kopia lustrzana https://github.com/OpenDroneMap/docs
commit
98bc066ac5
|
@ -0,0 +1,75 @@
|
|||
[main]
|
||||
host = https://www.transifex.com
|
||||
|
||||
[opendronemap_docs.arguments]
|
||||
file_filter = source/locale/<lang>/LC_MESSAGES/arguments.po
|
||||
source_file = source/locale/en/pot/arguments.pot
|
||||
source_lang = en
|
||||
type = PO
|
||||
|
||||
[opendronemap_docs.tutorials]
|
||||
file_filter = source/locale/<lang>/LC_MESSAGES/tutorials.po
|
||||
source_file = source/locale/en/pot/tutorials.pot
|
||||
source_lang = en
|
||||
type = PO
|
||||
|
||||
[opendronemap_docs.large]
|
||||
file_filter = source/locale/<lang>/LC_MESSAGES/large.po
|
||||
source_file = source/locale/en/pot/large.pot
|
||||
source_lang = en
|
||||
type = PO
|
||||
|
||||
[opendronemap_docs.multispectral]
|
||||
file_filter = source/locale/<lang>/LC_MESSAGES/multispectral.po
|
||||
source_file = source/locale/en/pot/multispectral.pot
|
||||
source_lang = en
|
||||
type = PO
|
||||
|
||||
[opendronemap_docs.resources]
|
||||
file_filter = source/locale/<lang>/LC_MESSAGES/resources.po
|
||||
source_file = source/locale/en/pot/resources.pot
|
||||
source_lang = en
|
||||
type = PO
|
||||
|
||||
[opendronemap_docs.installation]
|
||||
file_filter = source/locale/<lang>/LC_MESSAGES/installation.po
|
||||
source_file = source/locale/en/pot/installation.pot
|
||||
source_lang = en
|
||||
type = PO
|
||||
|
||||
[opendronemap_docs.flying]
|
||||
file_filter = source/locale/<lang>/LC_MESSAGES/flying.po
|
||||
source_file = source/locale/en/pot/flying.pot
|
||||
source_lang = en
|
||||
type = PO
|
||||
|
||||
[opendronemap_docs.outputs]
|
||||
file_filter = source/locale/<lang>/LC_MESSAGES/outputs.po
|
||||
source_file = source/locale/en/pot/outputs.pot
|
||||
source_lang = en
|
||||
type = PO
|
||||
|
||||
[opendronemap_docs.gcp]
|
||||
file_filter = source/locale/<lang>/LC_MESSAGES/gcp.po
|
||||
source_file = source/locale/en/pot/gcp.pot
|
||||
source_lang = en
|
||||
type = PO
|
||||
|
||||
[opendronemap_docs.index]
|
||||
file_filter = source/locale/<lang>/LC_MESSAGES/index.po
|
||||
source_file = source/locale/en/pot/index.pot
|
||||
source_lang = en
|
||||
type = PO
|
||||
|
||||
[opendronemap_docs.requesting-features]
|
||||
file_filter = source/locale/<lang>/LC_MESSAGES/requesting-features.po
|
||||
source_file = source/locale/en/pot/requesting-features.pot
|
||||
source_lang = en
|
||||
type = PO
|
||||
|
||||
[opendronemap_docs.contributing]
|
||||
file_filter = source/locale/<lang>/LC_MESSAGES/contributing.po
|
||||
source_file = source/locale/en/pot/contributing.pot
|
||||
source_lang = en
|
||||
type = PO
|
||||
|
5
Makefile
5
Makefile
|
@ -18,9 +18,12 @@ livehtml:
|
|||
sphinx-autobuild --open-browser -H 0.0.0.0 -b html "$(SOURCEDIR)" "$(BUILDDIR)"
|
||||
|
||||
deploy:
|
||||
@$(SPHINXBUILD) -M html "$(SOURCEDIR)" "$(BUILDDIR)" -nW
|
||||
@$(SPHINXBUILD) -b html "$(SOURCEDIR)" "$(BUILDDIR)/html" -nW
|
||||
@$(SPHINXBUILD) -b html "$(SOURCEDIR)" "$(BUILDDIR)/html/sw" -D language='sw' -nW
|
||||
@$(SPHINXBUILD) -b html "$(SOURCEDIR)" "$(BUILDDIR)/html/ar" -D language='ar' -nW
|
||||
# -n Run in nit-picky mode. Currently, this generates warnings for all missing references.
|
||||
# -W Turn warnings into errors that stop the build.
|
||||
# for more details about the options see https://www.sphinx-doc.org/en/1.8/man/sphinx-build.html#options
|
||||
|
||||
# Catch-all target: route all unknown targets to Sphinx using the new
|
||||
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
|
||||
|
|
67
README.md
67
README.md
|
@ -119,6 +119,73 @@ You will be prompted for your GitHub credentials.
|
|||
|
||||
Open https://github.com/OpenDroneMap/docs and you'll see a box asking you to open a pull request. Open a pull request by filling in a description of your changes and you're set! Somebody will review your changes and your contribution will be live on https://docs.opendronemap.org once approved.
|
||||
|
||||
# Translations
|
||||
|
||||
## Contributing translations
|
||||
|
||||
Transifex has a getting [started guide for translators](https://docs.transifex.com/getting-started-1/translators) that will walk you through the steps to setup an account.
|
||||
|
||||
The ODM documentation Transifex project can be found at: https://www.transifex.com/americanredcross/opendronemap_docs/
|
||||
|
||||
## Managing the translation process
|
||||
|
||||
This project uses [Transifex](https://www.transifex.com/) and the [`transifex-client`](https://docs.transifex.com/client/introduction) tool to help people contribute translations. The `transifex-client` tool is included in the requirements.txt file and should be installed on your system during setup when you run `pip install -r requirements.txt`.
|
||||
|
||||
You need to configure your account. For this, you need to create an API Token for your user to access this service through the command line. This can be done under your Transifex [User’s Settings](https://www.transifex.com/user/settings/api/). Set it up to use the token:
|
||||
|
||||
```
|
||||
tx init --token $TOKEN --no-interactive
|
||||
```
|
||||
|
||||
If there are changes in the English `*.rst` source files, you can update the `.pot` files:
|
||||
`sphinx-build -b gettext source source/locale/en/pot`
|
||||
|
||||
If there are **new** English `.rst` source files, you can map them by updating the `./.tx/config` file.
|
||||
|
||||
To then update the English source on Transifex:
|
||||
|
||||
```
|
||||
tx push --source
|
||||
```
|
||||
|
||||
To fetch translations from Transifex:
|
||||
|
||||
```
|
||||
tx pull --all
|
||||
```
|
||||
|
||||
Alternatively, you can pull only a specific language. For example:
|
||||
|
||||
```
|
||||
tx pull -l sw
|
||||
```
|
||||
|
||||
To add a new language, do it through the Transifex interface and then add a new line to the Makefile `deploy` command.
|
||||
|
||||
## The Travis CI build failed... 😞
|
||||
|
||||
Don't panic! Unfortunately, Transifex doesn't protect the reST notation that Sphinx uses for things like formatting and links. It's possible that during translation, some of the syntax was broken.
|
||||
|
||||
Start up your Python virtual environment if it's not already with `source venv/bin/activate` and then try a build of the language that you're trying to update, for example:
|
||||
|
||||
```
|
||||
sphinx-build -b html -D language='sw' source "_build/html/sw/" -nW
|
||||
```
|
||||
|
||||
The `-nW` (nitpicky) flag is important. You should see an output in your console such as:
|
||||
|
||||
```
|
||||
Warning, treated as error:
|
||||
/path/to/my/project/OpenDroneMap/docs/source/multispectral.rst:25:<translated>:1:Inline interpreted text or phrase reference start-string without end-string.
|
||||
```
|
||||
|
||||
Look at the source file and line that is mentioned. In this case the file is `source/multispectral.rst` and the line is the number after the colon after the filename (`25`). Looking at the file we see that line 25 is the last line and the "Help edit these docs!" link.
|
||||
|
||||
Go to Transifex, go to the resource, and go to the string. The warning/error message should help you understand what went wrong. In this case the link syntax wasn't matched correctly. Fix and save the translation.
|
||||
|
||||

|
||||
|
||||
Pull the language down (e.g. `tx pull -l sw`) and then try the build again. Unfortunately, if there is more than one error, you'll have to fix them one at a time.
|
||||
|
||||
### Questions?
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Sphinx==1.7.1
|
||||
sphinx-rtd-theme==0.2.4
|
||||
Sphinx==1.8.5
|
||||
sphinx-rtd-theme==0.5.0
|
||||
sphinx-autobuild==0.7.1
|
||||
transifex-client==0.13.11
|
|
@ -30,11 +30,13 @@ release = '0.9.10'
|
|||
# ones.
|
||||
extensions = [
|
||||
'sphinx.ext.todo',
|
||||
'sphinx_rtd_theme',
|
||||
'sphinx.ext.githubpages'
|
||||
]
|
||||
#For internationalization:
|
||||
locale_dirs = ['locale/']
|
||||
gettext_compact = False
|
||||
gettext_uuid = True
|
||||
|
||||
# Add any paths that contain templates here, relative to this directory.
|
||||
templates_path = ['_templates']
|
||||
|
@ -53,7 +55,7 @@ master_doc = 'index'
|
|||
#
|
||||
# This is also used if you do content translation via gettext catalogs.
|
||||
# Usually you set "language" from the command line for these cases.
|
||||
language = None
|
||||
language = 'en'
|
||||
|
||||
# List of patterns, relative to source directory, that match files and
|
||||
# directories to ignore when looking for source files.
|
||||
|
|
Plik binarny nie jest wyświetlany.
|
@ -1,34 +1,41 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Khadija Abdulla <khastylez@gmail.com>, 2020
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:01+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"POT-Creation-Date: 2020-07-21 17:01-0400\n"
|
||||
"PO-Revision-Date: 2020-07-21 21:10+0000\n"
|
||||
"Last-Translator: Khadija Abdulla <khastylez@gmail.com>, 2020\n"
|
||||
"Language-Team: Arabic (https://www.transifex.com/americanredcross/teams/111882/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.6.0\n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#: ../../source/arguments.rst:4
|
||||
# 3c050a6e28a542979ddc0687deabc8e3
|
||||
#: ../../../arguments.rst:4
|
||||
msgid "Options and Flags"
|
||||
msgstr ""
|
||||
msgstr "الخيارات والإعلام"
|
||||
|
||||
#: ../../source/arguments.rst:6
|
||||
# 22dcd4f93de143d4be348424b5141abe
|
||||
#: ../../../arguments.rst:6
|
||||
msgid "Arguments::"
|
||||
msgstr ""
|
||||
msgstr "الحجج::"
|
||||
|
||||
#: ../../source/arguments.rst:289
|
||||
# 3ce8631539bc46c5a0823cb6065ddf2d
|
||||
#: ../../../arguments.rst:382
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/using.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
"`ساعد في تحرير هذه المستندات!` "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/using.rst>`_"
|
||||
|
|
Plik binarny nie jest wyświetlany.
|
@ -1,196 +1,256 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Khadija Abdulla <khastylez@gmail.com>, 2020
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"POT-Creation-Date: 2020-07-21 17:01-0400\n"
|
||||
"PO-Revision-Date: 2020-07-21 21:10+0000\n"
|
||||
"Last-Translator: Khadija Abdulla <khastylez@gmail.com>, 2020\n"
|
||||
"Language-Team: Arabic (https://www.transifex.com/americanredcross/teams/111882/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.6.0\n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#: ../../source/contributing.rst:4
|
||||
# 33a2711c05144f9582994fb626017045
|
||||
#: ../../../contributing.rst:4
|
||||
msgid "How To Contribute"
|
||||
msgstr ""
|
||||
msgstr ".كيفية المشاركة "
|
||||
|
||||
#: ../../source/contributing.rst:6
|
||||
# fd9047989963484db99d88e41c6a763c
|
||||
#: ../../../contributing.rst:6
|
||||
msgid ""
|
||||
"OpenDroneMap relies on community contributions. You can contribute in "
|
||||
"many ways, even if you are not a programmer."
|
||||
"OpenDroneMap relies on community contributions. You can contribute in many "
|
||||
"ways, even if you are not a programmer."
|
||||
msgstr ""
|
||||
"OpenDroneMap يحتمل مشا ركةالإجتماعية.قد تشارك بطرق كثيرة وإلم تكن مرتب ."
|
||||
|
||||
#: ../../source/contributing.rst:9
|
||||
# d7a8cfb3ce1c4e789d9bc59089b7af33
|
||||
#: ../../../contributing.rst:9
|
||||
msgid "Community Forum"
|
||||
msgstr ""
|
||||
msgstr "جو الإجتماعي"
|
||||
|
||||
#: ../../source/contributing.rst:11
|
||||
# 372bbf306f2e4a60a8915ed2441771d7
|
||||
#: ../../../contributing.rst:11
|
||||
msgid ""
|
||||
"If you are looking to get involved, are stuck on a problem, or want to "
|
||||
"reach out, `the forum <https://community.opendronemap.org/>`_ is a great "
|
||||
"place to start. You may find your questions already answered or else you "
|
||||
"can find other useful tips and resources. You can also contribute your "
|
||||
"open access datasets for others to explore. It is a good place go before "
|
||||
"submitting bug reports or getting in touch with developers before writing"
|
||||
" a new feature."
|
||||
"If you are looking to get involved, are stuck on a problem, or want to reach"
|
||||
" out, `the forum <https://community.opendronemap.org/>`_ is a great place to"
|
||||
" start. You may find your questions already answered or else you can find "
|
||||
"other useful tips and resources. You can also contribute your open access "
|
||||
"datasets for others to explore. It is a good place go before submitting bug "
|
||||
"reports or getting in touch with developers before writing a new feature."
|
||||
msgstr ""
|
||||
" إن كنت تريد أن تشارك على مشاكل الصعبة الغالبة أو على مشاكل تحتاج إلى التحلل"
|
||||
" ،جو الإجتماعي. `حسن <https://community.opendronemap.org/>`_ في حال "
|
||||
"الإبتدائي، قد أجيب أوقد تجد طرق التي تساعدك أو محللات الأصلية . كذلك تستطيع "
|
||||
"مشاركة على معلوماتك العلانية با الآخرين. على الإستعمال الأحسن قبل إرسال "
|
||||
"وإنشار الأخطاء أو إستعمال مصنفين لكتابة أشياء أو معلومات جديدة."
|
||||
|
||||
#: ../../source/contributing.rst:14
|
||||
# 925012996add420ca56b7ff53828e745
|
||||
#: ../../../contributing.rst:14
|
||||
msgid "Reporting Bugs"
|
||||
msgstr ""
|
||||
msgstr "البق للتقرير"
|
||||
|
||||
#: ../../source/contributing.rst:16
|
||||
# cfa595af5c7748dea7c279ce2b09160f
|
||||
#: ../../../contributing.rst:16
|
||||
msgid ""
|
||||
"Bugs are tracked as Github issues. Please create an issue in the "
|
||||
"repository and tag it with the Bug tag."
|
||||
"Bugs are tracked as Github issues. Please create an issue in the repository "
|
||||
"and tag it with the Bug tag."
|
||||
msgstr ""
|
||||
"يتم تتبع الأخطاء على أنها مشكلات Github. يرجى إنشاء مشكلة في المستودع ووضع "
|
||||
"علامة عليها علامة خطأ."
|
||||
|
||||
#: ../../source/contributing.rst:18
|
||||
# f79279e13ea24b5e8196ae34fb77bb8c
|
||||
#: ../../../contributing.rst:18
|
||||
msgid ""
|
||||
"Explain the problem and include additional details to help maintainers "
|
||||
"reproduce the problem:"
|
||||
msgstr ""
|
||||
"شرح المشكلة وقم بتضمين تفاصيل إضافية لمساعدة المشرفين على إعادة إنتاج "
|
||||
"المشكلة:"
|
||||
|
||||
#: ../../source/contributing.rst:20
|
||||
# 3957ae606cb0425d8a8d6fcb1e639faf
|
||||
#: ../../../contributing.rst:20
|
||||
msgid ""
|
||||
"**Use a clear and descriptive title** for the issue to identify the "
|
||||
"problem."
|
||||
msgstr ""
|
||||
"**Use a clear and descriptive title** for the issue to identify the problem."
|
||||
msgstr "** استخدم عنوانًا واضحًا ووصفيًا ** للمشكلة لتحديد المشكلة."
|
||||
|
||||
#: ../../source/contributing.rst:21
|
||||
# bdb253d1772f45e7a7ef73e96e4e2654
|
||||
#: ../../../contributing.rst:21
|
||||
msgid ""
|
||||
"**Describe the exact steps which reproduce the problem** in as many "
|
||||
"details as possible. For example, start by explaining how you run ODM "
|
||||
"(Docker, Vagrant, etc), e.g. which command exactly you used in the "
|
||||
"terminal. When listing steps, **don't just say what you did, but explain "
|
||||
"how you did it.**"
|
||||
"**Describe the exact steps which reproduce the problem** in as many details "
|
||||
"as possible. For example, start by explaining how you run ODM (Docker, "
|
||||
"Vagrant, etc), e.g. which command exactly you used in the terminal. When "
|
||||
"listing steps, **don't just say what you did, but explain how you did it.**"
|
||||
msgstr ""
|
||||
"** صف الخطوات الدقيقة التي تعيد إظهار المشكلة ** بأكبر قدر ممكن من التفاصيل."
|
||||
" على سبيل المثال ، ابدأ بشرح كيفية تشغيل ODM (Docker, Vagrant, etc), على "
|
||||
"سبيل المثال الأمر الذي استخدمته بالضبط في المحطة. عند سرد الخطوات ، ** لا "
|
||||
"تقول فقط ما فعلته ، ولكن اشرح كيف فعلت ذلك. **"
|
||||
|
||||
#: ../../source/contributing.rst:22
|
||||
# eebf5329d6344d08b8d6949880fca497
|
||||
#: ../../../contributing.rst:22
|
||||
msgid ""
|
||||
"**Provide specific examples to demonstrate the steps.** Include links to "
|
||||
"files or GitHub projects, or copy/pasteable snippets, which you use in "
|
||||
"those examples. If you're providing snippets in the issue, use `Markdown "
|
||||
"code blocks <https://help.github.com/articles/markdown-basics/#multiple-"
|
||||
"lines>`_."
|
||||
"files or GitHub projects, or copy/pasteable snippets, which you use in those"
|
||||
" examples. If you're providing snippets in the issue, use `Markdown code "
|
||||
"blocks <https://help.github.com/articles/markdown-basics/#multiple-lines>`_."
|
||||
msgstr ""
|
||||
"** قدم أمثلة محددة لتوضيح الخطوات. ** قم بتضمين روابط لملفات أو مشاريع "
|
||||
"GitHub أو مقتطفات نسخ / لصق ، والتي تستخدمها في تلك الأمثلة. إذا كنت تقدم "
|
||||
"مقتطفات في المشكلة ، فاستخدمها `Markdown code blocks "
|
||||
"<https://help.github.com/articles/markdown-basics/#multiple-lines>`_."
|
||||
|
||||
#: ../../source/contributing.rst:23
|
||||
# c6dc25d3a3cc4b188e567e241d3f3a77
|
||||
#: ../../../contributing.rst:23
|
||||
msgid ""
|
||||
"**Describe the behavior you observed after following the steps** and "
|
||||
"point out what exactly is the problem with that behavior."
|
||||
"**Describe the behavior you observed after following the steps** and point "
|
||||
"out what exactly is the problem with that behavior."
|
||||
msgstr ""
|
||||
"** صف السلوك الذي لاحظته بعد اتباع الخطوات ** وأشر إلى ما هي بالضبط مشكلة "
|
||||
"هذا السلوك."
|
||||
|
||||
#: ../../source/contributing.rst:24
|
||||
# a4e3ccec200740a0854f45b8c9105728
|
||||
#: ../../../contributing.rst:24
|
||||
msgid "**Explain which behavior you expected to see instead and why.**"
|
||||
msgstr ""
|
||||
msgstr "** اشرح السلوك الذي توقعت رؤيته بدلاً من ذلك ولماذا. **"
|
||||
|
||||
#: ../../source/contributing.rst:25
|
||||
# 541a50043a9b4241a4b659662b6e1d30
|
||||
#: ../../../contributing.rst:25
|
||||
msgid ""
|
||||
"**Include screenshots and animated GIFs** which show you following the "
|
||||
"described steps and clearly demonstrate the problem. You can use `this "
|
||||
"tool to record GIFs on macOS and Windows "
|
||||
"<http://www.cockos.com/licecap/>`_, and `this tool "
|
||||
"<https://github.com/colinkeenan/silentcast>`_ or `this one "
|
||||
"described steps and clearly demonstrate the problem. You can use `this tool "
|
||||
"to record GIFs on macOS and Windows <http://www.cockos.com/licecap/>`_, and "
|
||||
"`this tool <https://github.com/colinkeenan/silentcast>`_ or `this one "
|
||||
"<https://github.com/GNOME/byzanz>`_ on Linux."
|
||||
msgstr ""
|
||||
"** تضمين لقطات شاشة وصور GIF متحركة ** توضح لك اتباع الخطوات الموضحة وتوضح "
|
||||
"المشكلة بوضوح. يمكنك استخدام هذه الأداة لتسجيل ملفات GIF على نظامي macOS و "
|
||||
"Windows <http://www.cockos.com/licecap/>`_, و `هذه الأداة "
|
||||
"<https://github.com/colinkeenan/silentcast>`_ أو `هذا "
|
||||
"<https://github.com/GNOME/byzanz>`_ على لينكس."
|
||||
|
||||
#: ../../source/contributing.rst:26
|
||||
# 43f98a3d907e487d967f29497574f208
|
||||
#: ../../../contributing.rst:26
|
||||
msgid ""
|
||||
"**If the problem is related to performance,** please post your machine's "
|
||||
"specs (host and guest machine)."
|
||||
msgstr ""
|
||||
"** إذا كانت المشكلة تتعلق بالأداء ، ** يرجى نشر مواصفات جهازك (الجهاز المضيف"
|
||||
" والضيف)."
|
||||
|
||||
#: ../../source/contributing.rst:27
|
||||
# 95d28b70f6c745269f2e101c9ebd7872
|
||||
#: ../../../contributing.rst:27
|
||||
msgid ""
|
||||
"**If the problem wasn't triggered by a specific action,** describe what "
|
||||
"you were doing before the problem happened and share more information "
|
||||
"using the guidelines below."
|
||||
"**If the problem wasn't triggered by a specific action,** describe what you "
|
||||
"were doing before the problem happened and share more information using the "
|
||||
"guidelines below."
|
||||
msgstr ""
|
||||
"** إذا لم تكن المشكلة ناتجة عن إجراء محدد ، ** صف ما كنت تفعله قبل حدوث "
|
||||
"المشكلة وشارك المزيد من المعلومات باستخدام الإرشادات أدناه."
|
||||
|
||||
#: ../../source/contributing.rst:29
|
||||
# 7e3a9ff9bd6047cfbb353a9007c072de
|
||||
#: ../../../contributing.rst:29
|
||||
msgid "Include details about your configuration and environment:"
|
||||
msgstr ""
|
||||
msgstr "قم بتضمين تفاصيل حول التكوين والبيئة الخاصة بك:"
|
||||
|
||||
#: ../../source/contributing.rst:31
|
||||
# d0b284a2065049f5a2c78f914fd4ee97
|
||||
#: ../../../contributing.rst:31
|
||||
msgid ""
|
||||
"**Which version of ODM are you using?** A stable release? a clone of "
|
||||
"master?"
|
||||
msgstr ""
|
||||
"**Which version of ODM are you using?** A stable release? a clone of master?"
|
||||
msgstr "** ما هو إصدار ODM الذي تستخدمه؟ ** إصدار مستقر؟ استنساخ سيد؟"
|
||||
|
||||
#: ../../source/contributing.rst:32
|
||||
# 2c6d40300ba9430a85a83dc23588debb
|
||||
#: ../../../contributing.rst:32
|
||||
msgid "**What's the name and version of the OS you're using?**"
|
||||
msgstr ""
|
||||
msgstr "** ما اسم وإصدار نظام التشغيل الذي تستخدمه؟ **"
|
||||
|
||||
#: ../../source/contributing.rst:33
|
||||
# 49f8184463b44d938e19609a806233ea
|
||||
#: ../../../contributing.rst:33
|
||||
msgid ""
|
||||
"**Are you running ODM in a virtual machine or Docker?** If so, which VM "
|
||||
"software are you using and which operating systems and versions are used "
|
||||
"for the host and the guest?"
|
||||
"software are you using and which operating systems and versions are used for"
|
||||
" the host and the guest?"
|
||||
msgstr ""
|
||||
"* هل تقوم بتشغيل ODM في جهاز افتراضي أو Docker؟ ** إذا كان الأمر كذلك ، ما "
|
||||
"هو برنامج VM الذي تستخدمه وأنظمة التشغيل والإصدارات المستخدمة للمضيف والضيف؟"
|
||||
|
||||
#: ../../source/contributing.rst:36
|
||||
# 3135c11e453247179f8c1c65d5700c63
|
||||
#: ../../../contributing.rst:36
|
||||
msgid "Template For Submitting Bug Reports"
|
||||
msgstr ""
|
||||
msgstr "نموذج لتقديم تقارير الأخطاء"
|
||||
|
||||
#: ../../source/contributing.rst:69
|
||||
# befb661ef483468296538486ee7c72a1
|
||||
#: ../../../contributing.rst:69
|
||||
msgid "Pull Requests"
|
||||
msgstr ""
|
||||
msgstr "سحب الطلبات"
|
||||
|
||||
#: ../../source/contributing.rst:71
|
||||
# 39056637eeed467b8451dd10998c0783
|
||||
#: ../../../contributing.rst:71
|
||||
msgid ""
|
||||
"Include screenshots and animated GIFs in your pull request whenever "
|
||||
"possible."
|
||||
msgstr ""
|
||||
msgstr "قم بتضمين لقطات شاشة وصور GIF متحركة في طلب السحب كلما أمكن ذلك."
|
||||
|
||||
#: ../../source/contributing.rst:72
|
||||
# b7dbdbac90e84d6284edfd22f4d2b53b
|
||||
#: ../../../contributing.rst:72
|
||||
msgid "Follow the PEP8 Python Style Guide."
|
||||
msgstr ""
|
||||
msgstr "اتبع دليل أسلوب PEP8 Python."
|
||||
|
||||
#: ../../source/contributing.rst:73
|
||||
# b679a0d7db6246c1a8c40720159e034b
|
||||
#: ../../../contributing.rst:73
|
||||
msgid "End files with a newline."
|
||||
msgstr ""
|
||||
msgstr "قم بإنهاء الملفات بخط جديد."
|
||||
|
||||
#: ../../source/contributing.rst:76
|
||||
# dc6b120a67bf4f9684e5bb653290c7cb
|
||||
#: ../../../contributing.rst:76
|
||||
msgid "Avoid platform-dependent code:"
|
||||
msgstr ""
|
||||
msgstr "تجنب الرمز المعتمد على النظام الأساسي:"
|
||||
|
||||
#: ../../source/contributing.rst:75
|
||||
# e198baeffa1f4a919d039b18e11ec7f8
|
||||
#: ../../../contributing.rst:75
|
||||
msgid "Use require('fs-plus').getHomeDirectory() to get the home directory."
|
||||
msgstr ""
|
||||
"استخدم تتطلب ('fs-plus').getHomeDirectory() للحصول على الدليل الرئيسي."
|
||||
|
||||
#: ../../source/contributing.rst:76
|
||||
# 5d00c0c8d3d24347bfaa26f0ebe1e063
|
||||
#: ../../../contributing.rst:76
|
||||
msgid "Use path.join() to concatenate filenames."
|
||||
msgstr ""
|
||||
msgstr "استخدم ()path.join لسَلسَلة أسماء الملفات."
|
||||
|
||||
#: ../../source/contributing.rst:77
|
||||
# 00cddf0eb7bf4e4bb9a469313a778b3a
|
||||
#: ../../../contributing.rst:77
|
||||
msgid ""
|
||||
"Use os.tmpdir() rather than /tmp when you need to reference the temporary "
|
||||
"directory."
|
||||
msgstr ""
|
||||
"استخدم ()os.tmpdir بدلاً من tmp/ عندما تحتاج إلى الرجوع إلى الدليل المؤقت."
|
||||
|
||||
#: ../../source/contributing.rst:79
|
||||
msgid "Using a plain return when returning explicitly at the end of a function."
|
||||
msgstr ""
|
||||
# 60e9e81967354752b39a01541d5b2ccf
|
||||
#: ../../../contributing.rst:79
|
||||
msgid ""
|
||||
"Using a plain return when returning explicitly at the end of a function."
|
||||
msgstr "استخدام إرجاع عادي عند العودة بشكل صريح في نهاية الدالة."
|
||||
|
||||
#: ../../source/contributing.rst:79
|
||||
# fc372ffc32604e90890111d4287b33a0
|
||||
#: ../../../contributing.rst:79
|
||||
msgid "Not return null, return undefined, null, or undefined"
|
||||
msgstr ""
|
||||
msgstr "عدم إرجاع قيمة فارغة أو إرجاع غير محدد أو خالٍ أو غير معرّف"
|
||||
|
||||
#: ../../source/contributing.rst:81
|
||||
# cbb4ef102fb34a88bc3ccb04d7ff203c
|
||||
#: ../../../contributing.rst:81
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/contributing.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "How to contribute"
|
||||
#~ msgstr ""
|
||||
|
||||
"`ساعد في تحرير هذه المستندات!`\" "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/contributing.rst>`_"
|
||||
|
|
Plik binarny nie jest wyświetlany.
|
@ -1,78 +1,106 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Khadija Abdulla <khastylez@gmail.com>, 2020
|
||||
# danbjoseph <danbjoseph@gmail.com>, 2020
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"POT-Creation-Date: 2020-07-21 17:01-0400\n"
|
||||
"PO-Revision-Date: 2020-07-21 21:10+0000\n"
|
||||
"Last-Translator: danbjoseph <danbjoseph@gmail.com>, 2020\n"
|
||||
"Language-Team: Arabic (https://www.transifex.com/americanredcross/teams/111882/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.6.0\n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#: ../../source/flying.rst:2
|
||||
# 846d8a3f9d9646e5a43911942183b8c8
|
||||
#: ../../../flying.rst:2
|
||||
msgid "Flying Tips"
|
||||
msgstr ""
|
||||
msgstr "نصائح طيران"
|
||||
|
||||
#: ../../source/flying.rst:4
|
||||
# c96becee56f94efca8b3de336db9d844
|
||||
#: ../../../flying.rst:4
|
||||
msgid ""
|
||||
"The `Humanitarian OpenStreetMap team <https://www.hotosm.org/>`_ has "
|
||||
"guidelines on `flying for UAV mapping <https://uav-"
|
||||
"guidelines.openaerialmap.org/>`_:"
|
||||
msgstr ""
|
||||
"فريق `OpenStreetMap الإنساني <https://www.hotosm.org/>`_ لديها إرشادات "
|
||||
"حول` الطيران لرسم خرائط الطائرات بدون طيار <https://uav-"
|
||||
"guidelines.openaerialmap.org/>`_: "
|
||||
|
||||
#: ../../source/flying.rst:6
|
||||
# 4a6f4c2edee741ddac135447436976f7
|
||||
#: ../../../flying.rst:6
|
||||
msgid ""
|
||||
"`Choosing the right UAV <https://uav-"
|
||||
"guidelines.openaerialmap.org/pages/05-choosing-the-right-uav/>`_"
|
||||
"`Choosing the right UAV <https://uav-guidelines.openaerialmap.org/pages/05"
|
||||
"-choosing-the-right-uav/>`_"
|
||||
msgstr ""
|
||||
"`اختيار الطائرات بدون طيار الصحيحة <https://uav-"
|
||||
"guidelines.openaerialmap.org/pages/05-choosing-the-right-uav/>`_"
|
||||
|
||||
#: ../../source/flying.rst:8
|
||||
# fe7f09d545684117aba61ff9860a51d2
|
||||
#: ../../../flying.rst:8
|
||||
msgid ""
|
||||
"`Choosing the right sensor <https://uav-"
|
||||
"guidelines.openaerialmap.org/pages/06-choosing-the-sensor/>`_"
|
||||
msgstr ""
|
||||
"`اختيار المستشعر المناسب <https://uav-guidelines.openaerialmap.org/pages/06"
|
||||
"-choosing-the-sensor/>`_"
|
||||
|
||||
#: ../../source/flying.rst:10
|
||||
# 6c7947d1197147df9d63e165d11924cb
|
||||
#: ../../../flying.rst:10
|
||||
msgid ""
|
||||
"`Mission preparation <https://uav-guidelines.openaerialmap.org/pages/07"
|
||||
"-preparing-for-the-uav-mission/>`_"
|
||||
msgstr ""
|
||||
"`إعداد المهمة <https://uav-guidelines.openaerialmap.org/pages/07-preparing-"
|
||||
"for-the-uav-mission/>`_"
|
||||
|
||||
#: ../../source/flying.rst:12
|
||||
# 9b557a1da5cc46af807bcaaa6faee6dd
|
||||
#: ../../../flying.rst:12
|
||||
msgid ""
|
||||
"The guidelines are intended for drone mapping projects on islands, but "
|
||||
"have general use for all drone mappers."
|
||||
"The guidelines are intended for drone mapping projects on islands, but have "
|
||||
"general use for all drone mappers."
|
||||
msgstr ""
|
||||
"المبادئ التوجيهية مخصصة لمشاريع رسم خرائط الطائرات بدون طيار في الجزر ، ولكن"
|
||||
" للاستخدام العام لجميع مصممي خرائط الطائرات بدون طيار."
|
||||
|
||||
#: ../../source/flying.rst:14
|
||||
# 44b1eacc4ff2499a8a4e74651b9443e1
|
||||
#: ../../../flying.rst:14
|
||||
msgid ""
|
||||
"See also DroneDeploy's guide on `Making Successful Maps "
|
||||
"<https://support.dronedeploy.com/docs/making-successful-maps>`_, which "
|
||||
"provides great tips on mission planning."
|
||||
msgstr ""
|
||||
"انظر أيضًا دليل DroneDeploy حول \"عمل خرائط ناجحة "
|
||||
"<https://support.dronedeploy.com/docs/making-successful-maps>`_, لذي يقدم "
|
||||
"نصائح رائعة حول تخطيط المهمة."
|
||||
|
||||
#: ../../source/flying.rst:16
|
||||
# 790dc47dea524f9589ab6de072d0febc
|
||||
#: ../../../flying.rst:16
|
||||
msgid ""
|
||||
"Finally, lens distortion is a challenge in projects requiring accurate 3D "
|
||||
" data. See our section in these docs on `Camera Calibration "
|
||||
"<tutorials.html#calibrating-the-camera>`_."
|
||||
"data. See our section in these docs on `Camera Calibration <tutorials.html"
|
||||
"#calibrating-the-camera>`_."
|
||||
msgstr ""
|
||||
"أخيرًا ، يمثل تشويه العدسة تحديًا في المشاريع التي تتطلب بيانات ث 3D دقيقة. "
|
||||
"راجع قسمنا في هذه المستندات حول `معايرة الكاميرا <tutorials.html"
|
||||
"#calibrating-the-camera>`_."
|
||||
|
||||
#: ../../source/flying.rst:18
|
||||
# 96453509d0ed4fcf97681fe2c9bb7385
|
||||
#: ../../../flying.rst:18
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/flying.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Flying tips"
|
||||
#~ msgstr ""
|
||||
|
||||
"`ساعد في تحرير هذه المستندات! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/flying.rst>`_"
|
||||
|
|
Plik binarny nie jest wyświetlany.
|
@ -1,181 +1,249 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
# This file is distributed under the same license as the OpenDroneMap package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Khadija Abdulla <khastylez@gmail.com>, 2020
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"POT-Creation-Date: 2020-07-21 17:01-0400\n"
|
||||
"PO-Revision-Date: 2020-07-21 21:10+0000\n"
|
||||
"Last-Translator: Khadija Abdulla <khastylez@gmail.com>, 2020\n"
|
||||
"Language-Team: Arabic (https://www.transifex.com/americanredcross/teams/111882/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.6.0\n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#: ../../source/gcp.rst:3
|
||||
# 911f0a51699040bbbac8fd6336625beb
|
||||
#: ../../../gcp.rst:3
|
||||
msgid "Ground Control Points"
|
||||
msgstr ""
|
||||
msgstr "نقاط التحكم الأرضية"
|
||||
|
||||
#: ../../source/gcp.rst:5
|
||||
# 022d5bddc65e48618d8dcfa0a4c6f73d
|
||||
#: ../../../gcp.rst:5
|
||||
msgid ""
|
||||
"Ground control points are useful for correcting distortions in the data "
|
||||
"and referencing the data to know coordinate systems."
|
||||
"Ground control points are useful for correcting distortions in the data and "
|
||||
"referencing the data to know coordinate systems."
|
||||
msgstr ""
|
||||
"نقاط التحكم الأرضية مفيدة لتصحيح التشوهات في البيانات والإشارة إلى البيانات "
|
||||
"لمعرفة أنظمة الإحداثيات."
|
||||
|
||||
#: ../../source/gcp.rst:7
|
||||
# 8452104a74d646fd98667e75940154f9
|
||||
#: ../../../gcp.rst:7
|
||||
msgid "The format of the GCP file is simple."
|
||||
msgstr ""
|
||||
msgstr "تنسيق ملف GCP بسيط"
|
||||
|
||||
#: ../../source/gcp.rst:9
|
||||
# dce0e96292f14671b20009aff56908eb
|
||||
#: ../../../gcp.rst:9
|
||||
msgid ""
|
||||
"The first line should contain the name of the projection used for the geo "
|
||||
" coordinates. This can be specified either as a PROJ string (e.g. "
|
||||
"``+proj=utm +zone=10 +ellps=WGS84 +datum=WGS84 +units=m +no_defs``), EPSG"
|
||||
" code (e.g. ``EPSG:4326``) or as a ``WGS84 UTM <zone>[N|S]`` value (eg. "
|
||||
"``WGS84 UTM 16N``)"
|
||||
"coordinates. This can be specified either as a PROJ string (e.g. ``+proj=utm"
|
||||
" +zone=10 +ellps=WGS84 +datum=WGS84 +units=m +no_defs``), EPSG code (e.g. "
|
||||
"``EPSG:4326``) or as a ``WGS84 UTM <zone>[N|S]`` value (eg. ``WGS84 UTM "
|
||||
"16N``)"
|
||||
msgstr ""
|
||||
"يجب أن يحتوي السطر الأول على اسم الإسقاط المستخدم للإحداثيات الجغرافية. مكن "
|
||||
"تحديد ذلك إما كسلسلة PROJ (e.g. ``+proj=utm +zone=10 +ellps=WGS84 "
|
||||
"+datum=WGS84 +units=m +no_defs``), EPSG code (e.g. ``EPSG:4326``) or as a "
|
||||
"``WGS84 UTM 1[N|S]`` value (eg. ``WGS84 UTM 16N``)"
|
||||
|
||||
#: ../../source/gcp.rst:10
|
||||
# b2b962c0b86148d0baa20170f21a4809
|
||||
#: ../../../gcp.rst:10
|
||||
msgid ""
|
||||
"Subsequent lines are the X, Y & Z coordinates, your associated pixels, "
|
||||
"the image filename and optional extra fields, separated by tabs or "
|
||||
"spaces:"
|
||||
"Subsequent lines are the X, Y & Z coordinates, your associated pixels, the "
|
||||
"image filename and optional extra fields, separated by tabs or spaces:"
|
||||
msgstr ""
|
||||
"الخطوط اللاحقة هي إحداثيات X و Y و Z ، وحدات البكسل المرتبطة ، اسم ملف "
|
||||
"الصورة والحقول الإضافية الاختيارية ، مفصولة بعلامات تبويب أو مسافات:"
|
||||
|
||||
#: ../../source/gcp.rst:11
|
||||
# b14a4632f09d452987da341b4761ee93
|
||||
#: ../../../gcp.rst:11
|
||||
msgid "Elevation values can be set to \"NaN\" to indicate no value"
|
||||
msgstr ""
|
||||
msgstr "مكن ضبط قيم الارتفاع على \"NaN\" للإشارة إلى عدم وجود قيمة"
|
||||
|
||||
#: ../../source/gcp.rst:12
|
||||
# 326fc2b4a246402887eec024ee7dc44b
|
||||
#: ../../../gcp.rst:12
|
||||
msgid "The 7th column (optional) typically contains the label of the GCP."
|
||||
msgstr ""
|
||||
msgstr "يحتوي العمود السابع (اختياري) يحتوي عادة GCP تسمية."
|
||||
|
||||
#: ../../source/gcp.rst:14
|
||||
# 7e516e234f5d48b6bdf2452c90949a1e
|
||||
#: ../../../gcp.rst:14
|
||||
msgid "GCP file format::"
|
||||
msgstr ""
|
||||
msgstr "تنسيق ملف GCP"
|
||||
|
||||
#: ../../source/gcp.rst:20
|
||||
# cfc779a9cd644757ac87736911a5cb2c
|
||||
#: ../../../gcp.rst:20
|
||||
msgid "Example::"
|
||||
msgstr ""
|
||||
msgstr "مثال::"
|
||||
|
||||
#: ../../source/gcp.rst:27
|
||||
# af0d955959494dfea9d3d9efbb90d333
|
||||
#: ../../../gcp.rst:27
|
||||
msgid ""
|
||||
"If you supply a GCP file called ``gcp_list.txt`` then ODM will "
|
||||
"automatically detect it. If it has another name you can specify using "
|
||||
"``--gcp <path>``. If you have a gcp file and want to do georeferencing "
|
||||
"with exif instead, then you can specify ``--use-exif``. If you have high "
|
||||
"precision GPS measurements in your images (RTK) and want to use that "
|
||||
"information along with a gcp file, you can specify ``--force-gps``."
|
||||
"If you supply a GCP file called ``gcp_list.txt`` then ODM will automatically"
|
||||
" detect it. If it has another name you can specify using ``--gcp <path>``. "
|
||||
"If you have a gcp file and want to do georeferencing with exif instead, then"
|
||||
" you can specify ``--use-exif``. If you have high precision GPS measurements"
|
||||
" in your images (RTK) and want to use that information along with a gcp "
|
||||
"file, you can specify ``--force-gps``."
|
||||
msgstr ""
|
||||
"إذا قمت بتوفير ملف GCP يسمى ``gcp_list.txt`` ثم سيكتشف ODM ذلك تلقائيًا. "
|
||||
"إذا كان له اسم آخر يمكنك تحديده باستخدام ``--gcp <path>``. إذا كان لديك ملف "
|
||||
"gcp وتريد إجراء مرجع جغرافي باستخدام exif بدلاً من ذلك ، فيمكنك تحديد "
|
||||
"\"--use-exif\". إذا كانت لديك قياسات GPS عالية الدقة في صورك (RTK) وتريد "
|
||||
"استخدام هذه المعلومات مع ملف gcp ، يمكنك تحديد \"--force-gps\"."
|
||||
|
||||
#: ../../source/gcp.rst:29
|
||||
# bbde94c6d77e4ebcb74ecec6b26d4752
|
||||
#: ../../../gcp.rst:29
|
||||
msgid ""
|
||||
"`This post has some information about placing Ground Control Targets "
|
||||
"before a flight <http://diydrones.com/profiles/blogs/ground-control-"
|
||||
"points-gcps-for-aerial-photography>`_, but if you already have images, "
|
||||
"you can find your own points in the images post facto. It's important "
|
||||
"that you find high-contrast objects that are found in **at least** 3 "
|
||||
"photos, and that you find a minimum of 5 objects."
|
||||
"`This post has some information about placing Ground Control Targets before "
|
||||
"a flight <http://diydrones.com/profiles/blogs/ground-control-points-gcps-"
|
||||
"for-aerial-photography>`_, but if you already have images, you can find your"
|
||||
" own points in the images post facto. It's important that you find high-"
|
||||
"contrast objects that are found in **at least** 3 photos, and that you find "
|
||||
"a minimum of 5 objects."
|
||||
msgstr ""
|
||||
"`تحتوي هذه المشاركة على بعض المعلومات حول وضع أهداف التحكم الأرضي قبل الرحلة"
|
||||
" <http://diydrones.com/profiles/blogs/ground-control-points-gcps-for-aerial-"
|
||||
"photography>`_, ولكن إذا كان لديك صور بالفعل ، يمكنك العثور على نقاطك الخاصة"
|
||||
" في الصور بعد الواقع. من المهم أن تجد كائنات عالية التباين موجودة في ** 3 "
|
||||
"صور على الأقل ** ، وأن تعثر على 5 كائنات على الأقل."
|
||||
|
||||
#: ../../source/gcp.rst:31
|
||||
# 6b99ba39e0ba4be98be0cf9089458f19
|
||||
#: ../../../gcp.rst:31
|
||||
msgid ""
|
||||
"Sharp corners are good picks for GCPs. You should also place/find the "
|
||||
"GCPs evenly around your survey area."
|
||||
"Sharp corners are good picks for GCPs. You should also place/find the GCPs "
|
||||
"evenly around your survey area."
|
||||
msgstr ""
|
||||
"تعد الزوايا الحادة اختيارات جيدة لـ GCP. يجب عليك أيضًا وضع / العثور على "
|
||||
"نقاط المراقبة الحرجة بشكل متساوٍ حول منطقة المسح."
|
||||
|
||||
#: ../../source/gcp.rst:33
|
||||
# 2022c1e3d9074c80bc5988fb77630231
|
||||
#: ../../../gcp.rst:33
|
||||
msgid ""
|
||||
"The ``gcp_list.txt`` file must be created in the base of your project "
|
||||
"folder."
|
||||
msgstr ""
|
||||
msgstr "يجب إنشاء ملف `` gcp_list.txt '' في قاعدة مجلد المشروع."
|
||||
|
||||
#: ../../source/gcp.rst:35
|
||||
# d053ffc6a0b44e60be90864b1d0ad399
|
||||
#: ../../../gcp.rst:35
|
||||
msgid ""
|
||||
"For good results your file should have a minimum of 15 lines after the "
|
||||
"header (5 points with 3 images to each point)."
|
||||
msgstr ""
|
||||
"للحصول على نتائج جيدة ، يجب أن يحتوي ملفك على 15 سطرًا على الأقل بعد الرأس "
|
||||
"(5 نقاط مع 3 صور لكل نقطة)."
|
||||
|
||||
#: ../../source/gcp.rst:39
|
||||
# 9712bfa7df5343f8b383155a9eee015c
|
||||
#: ../../../gcp.rst:39
|
||||
msgid "User Interfaces"
|
||||
msgstr ""
|
||||
msgstr "واجهات المستخدم"
|
||||
|
||||
#: ../../source/gcp.rst:41
|
||||
# 58a11feafc7641fca1250a9e80a9e9a2
|
||||
#: ../../../gcp.rst:41
|
||||
msgid "You can use one of two user interfaces for creating GCP files:"
|
||||
msgstr ""
|
||||
msgstr "يمكنك استخدام واحدة من واجهات المستخدم لإنشاء ملفات GCP:"
|
||||
|
||||
#: ../../source/gcp.rst:43
|
||||
# 84afe5e0d2964247b972da99da981b86
|
||||
#: ../../../gcp.rst:43
|
||||
msgid "`POSM GCPi <https://github.com/posm/posm-gcpi>`_"
|
||||
msgstr ""
|
||||
msgstr "`POSM GCPi <https://github.com/posm/posm-gcpi>`_"
|
||||
|
||||
#: ../../source/gcp.rst:44
|
||||
# 60450f4c04ca4bac9bd654bd2ba83c35
|
||||
#: ../../../gcp.rst:44
|
||||
msgid "`GCP Editor Pro <https://github.com/uav4geo/GCPEditorPro>`_"
|
||||
msgstr ""
|
||||
msgstr "`GCP Editor Pro <https://github.com/uav4geo/GCPEditorPro>`_"
|
||||
|
||||
#: ../../source/gcp.rst:48
|
||||
# 397f2777c59948cc8c50fe7aaee405e1
|
||||
#: ../../../gcp.rst:48
|
||||
msgid "POSM GCPi"
|
||||
msgstr ""
|
||||
msgstr "POSM GCPi"
|
||||
|
||||
#: ../../source/gcp.rst:50
|
||||
# 927593a77dc84e74b137c4d439df6825
|
||||
#: ../../../gcp.rst:50
|
||||
msgid ""
|
||||
"The POSM GCPi is loaded by default on WebODM. An example is available at "
|
||||
"`the WebODM Demo <http://demo.webodm.org/plugins/posm-gcpi/>`_. To use "
|
||||
"this with known ground control XYZ values, one would do the following:"
|
||||
"`the WebODM Demo <http://demo.webodm.org/plugins/posm-gcpi/>`_. To use this "
|
||||
"with known ground control XYZ values, one would do the following:"
|
||||
msgstr ""
|
||||
"يتم تحميل POSM GCPi بشكل افتراضي على WebODM. يتوفر مثال في `WebODM Demo "
|
||||
"<http://demo.webodm.org/plugins/posm-gcpi/>`_. استخدام هذا مع قيم XYZ "
|
||||
"المعروفة للتحكم الأرضي ، يمكن للمرء القيام بما يلي: "
|
||||
|
||||
#: ../../source/gcp.rst:52
|
||||
# b9a43cb0966f427fae9039e6aa420d36
|
||||
#: ../../../gcp.rst:52
|
||||
msgid ""
|
||||
"Create a GCP list that only includes gcp name (this is the label that "
|
||||
"will be seen in the GCP interface), x, y, and z, with a header with a "
|
||||
"proj4 string of your GCPs (make sure they are in a planar coordinate "
|
||||
"system, such as UTM. It should look something like this:"
|
||||
"Create a GCP list that only includes gcp name (this is the label that will "
|
||||
"be seen in the GCP interface), x, y, and z, with a header with a proj4 "
|
||||
"string of your GCPs (make sure they are in a planar coordinate system, such "
|
||||
"as UTM. It should look something like this:"
|
||||
msgstr ""
|
||||
"إنشاء قائمة GCP تتضمن فقط اسم gcp (هذا هو الملصق الذي سيظهر في واجهة GCP) و "
|
||||
"x و y و z ، مع رأس بسلسلة proj4 من GCP (تأكد من وجودها في إحداثيات مستوية "
|
||||
"النظام ، مثل UTM. يجب أن يبدو شيء مثل هذا:"
|
||||
|
||||
#: ../../source/gcp.rst:63
|
||||
# c193a1ce8f7a4da2b796010be7fc9521
|
||||
#: ../../../gcp.rst:63
|
||||
msgid ""
|
||||
"Then one can load this GCP list into the interface, load the images, and "
|
||||
"place each of the GCPs in the image."
|
||||
msgstr ""
|
||||
"ثم يمكن للمرء تحميل قائمة GCP هذه في الواجهة ، وتحميل الصور ، ووضع كل من GCP"
|
||||
" في الصورة."
|
||||
|
||||
#: ../../source/gcp.rst:67
|
||||
# ece94c1e7c6c44698893e57cf6c10c92
|
||||
#: ../../../gcp.rst:67
|
||||
msgid "GCP Editor Pro"
|
||||
msgstr ""
|
||||
msgstr "GCP Editor Pro"
|
||||
|
||||
#: ../../source/gcp.rst:69
|
||||
# 31a2f2c5d1614505b9b11f063ed8f8af
|
||||
#: ../../../gcp.rst:69
|
||||
msgid ""
|
||||
"This app needs to be installed separately or can be loaded as a WebODM "
|
||||
"plugin from `https://github.com/uav4geo/GCPEditorPro "
|
||||
"<https://github.com/uav4geo/GCPEditorPro>`_"
|
||||
msgstr ""
|
||||
"يجب تثبيت هذا التطبيق بشكل منفصل أو يمكن تحميله كبرنامج مساعد WebODM من "
|
||||
"`https://github.com/uav4geo/GCPEditorPro "
|
||||
"<https://github.com/uav4geo/GCPEditorPro>`_"
|
||||
|
||||
#: ../../source/gcp.rst:71
|
||||
# 400a7b772b064992b58e256c4a86d802
|
||||
#: ../../../gcp.rst:71
|
||||
msgid ""
|
||||
"Create a CSV file that includes the gcp name, northing, easting and "
|
||||
"elevation."
|
||||
msgstr ""
|
||||
msgstr "أنشئ ملف CSV يتضمن اسم gcp والشمال والشرق والارتفاع."
|
||||
|
||||
#: ../../source/gcp.rst:80
|
||||
# e3be97e2b1d442f99df0adde4e1752cb
|
||||
#: ../../../gcp.rst:80
|
||||
msgid ""
|
||||
"Then import the CSV from the main screen and type ``+proj=utm +zone=37 "
|
||||
"+south +ellps=WGS84 +datum=WGS84 +units=m +no_defs`` in the ``EPSG/PROJ`` "
|
||||
"box."
|
||||
msgstr ""
|
||||
"م قم باستيراد ملف CSV من الشاشة الرئيسية واكتب `+proj=utm +zone=37 +south "
|
||||
"+ellps=WGS84 +datum=WGS84 +units=m +no_defs`` in the ``EPSG/PROJ`` صندوق."
|
||||
|
||||
#: ../../source/gcp.rst:82
|
||||
# e90ba38338ef409792e454d071bbcc16
|
||||
#: ../../../gcp.rst:82
|
||||
msgid ""
|
||||
"The following screen will display a map from where to select the GCPs to "
|
||||
"tag and import the respective images."
|
||||
"The following screen will display a map from where to select the GCPs to tag"
|
||||
" and import the respective images."
|
||||
msgstr ""
|
||||
"سيتم عرض الشاشة التالية خريطة من أين تختار GCP وضع علامة على الصور ذات الصلة"
|
||||
" واستيرادها."
|
||||
|
||||
#: ../../source/gcp.rst:85
|
||||
# 23911fa0503e4bb58ddc99f41c10b797
|
||||
#: ../../../gcp.rst:85
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/tutorials.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
"`ساعد في تحرير هذه المستندات! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/tutorials.rst>`_"
|
||||
|
|
Plik binarny nie jest wyświetlany.
|
@ -1,30 +1,37 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Khadija Abdulla <khastylez@gmail.com>, 2020
|
||||
# danbjoseph <danbjoseph@gmail.com>, 2020
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:01+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"POT-Creation-Date: 2020-07-21 17:01-0400\n"
|
||||
"PO-Revision-Date: 2020-07-21 21:10+0000\n"
|
||||
"Last-Translator: danbjoseph <danbjoseph@gmail.com>, 2020\n"
|
||||
"Language-Team: Arabic (https://www.transifex.com/americanredcross/teams/111882/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.6.0\n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#: ../../source/index.rst:8
|
||||
# fa2f220d4f704404a75d0d9dd55f72b8
|
||||
#: ../../../index.rst:8
|
||||
msgid "Welcome to OpenDroneMap's documentation"
|
||||
msgstr ""
|
||||
msgstr "مرحبًا بك في وثائق OpenDroneMap"
|
||||
|
||||
#: ../../source/index.rst:40
|
||||
# 2b86dd77c9ca4fdbb3e5c3a362287930
|
||||
#: ../../../index.rst:43
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/index.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
"`ساعد في تحرير هذه المستندات! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/index.rst>`_"
|
||||
|
|
Plik binarny nie jest wyświetlany.
Plik diff jest za duży
Load Diff
Plik binarny nie jest wyświetlany.
|
@ -1,275 +1,391 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Khadija Abdulla <khastylez@gmail.com>, 2020
|
||||
# danbjoseph <danbjoseph@gmail.com>, 2020
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:01+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"POT-Creation-Date: 2020-07-21 17:01-0400\n"
|
||||
"PO-Revision-Date: 2020-07-21 21:10+0000\n"
|
||||
"Last-Translator: danbjoseph <danbjoseph@gmail.com>, 2020\n"
|
||||
"Language-Team: Arabic (https://www.transifex.com/americanredcross/teams/111882/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.6.0\n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#: ../../source/large.rst:4
|
||||
# 5ea5942cc4604baea3dc66a4ee841282
|
||||
#: ../../../large.rst:4
|
||||
msgid "Splitting Large Datasets"
|
||||
msgstr ""
|
||||
msgstr "تقسيم مجموعات البيانات الكبيرة"
|
||||
|
||||
#: ../../source/large.rst:6
|
||||
# 09b5af17439740d2b8a18993e6709da6
|
||||
#: ../../../large.rst:6
|
||||
msgid ""
|
||||
"Starting with ODM version ``0.6.0`` you can split up very large datasets "
|
||||
"into manageable chunks (called submodels), running the pipeline on each "
|
||||
"chunk, and then producing merged DEMs, orthophotos and point clouds. The "
|
||||
"process is referred to as \"split-merge\"."
|
||||
msgstr ""
|
||||
"بدءًا من إصدار ODM `` 0.6.0 ، يمكنك تقسيم مجموعات البيانات الكبيرة جدًا إلى"
|
||||
" قطع قابلة للإدارة (تسمى النماذج الفرعية) ، وتشغيل خط الأنابيب على كل قطعة ،"
|
||||
" ثم إنتاج DEMs مدمجة ، وتقويم الصور ، وسحب النقاط. يشار إلى العملية باسم "
|
||||
"\"الدمج المقسم\"."
|
||||
|
||||
#: ../../source/large.rst:8
|
||||
# 0c58eb496d8d456ca011011549f430a8
|
||||
#: ../../../large.rst:8
|
||||
msgid ""
|
||||
"Why might you use the split-merge pipeline? If you have a very large "
|
||||
"number of images in your dataset, split-merge will help make the "
|
||||
"processing more manageable on a large machine (it will require less "
|
||||
"memory). If you have many machines all connected to the same network you "
|
||||
"can also process the submodels in parallel, thus allowing for horizontal "
|
||||
"scaling and processing thousands of images more quickly."
|
||||
"Why might you use the split-merge pipeline? If you have a very large number "
|
||||
"of images in your dataset, split-merge will help make the processing more "
|
||||
"manageable on a large machine (it will require less memory). If you have "
|
||||
"many machines all connected to the same network you can also process the "
|
||||
"submodels in parallel, thus allowing for horizontal scaling and processing "
|
||||
"thousands of images more quickly."
|
||||
msgstr ""
|
||||
"لماذا قد تستخدم خط أنابيب الدمج المقسم؟ إذا كان لديك عدد كبير جدًا من الصور "
|
||||
"في مجموعة البيانات الخاصة بك ، سيساعد الدمج المقسم على جعل المعالجة أكثر "
|
||||
"قابلية للإدارة على جهاز كبير (سيتطلب ذاكرة أقل). إذا كان لديك العديد من "
|
||||
"الأجهزة المتصلة جميعها بالشبكة نفسها ، فيمكنك أيضًا معالجة النماذج الفرعية "
|
||||
"بشكل متوازٍ ، مما يسمح بالقياس الأفقي ومعالجة آلاف الصور بسرعة أكبر."
|
||||
|
||||
#: ../../source/large.rst:10
|
||||
# d3a6bf47796e4775bfb53066d0d51dce
|
||||
#: ../../../large.rst:10
|
||||
msgid ""
|
||||
"Split-merge works in WebODM out of the box as long as the processing "
|
||||
"nodes support split-merge, by enabling the ``--split`` option when "
|
||||
"creating a new task."
|
||||
"Split-merge works in WebODM out of the box as long as the processing nodes "
|
||||
"support split-merge, by enabling the ``--split`` option when creating a new "
|
||||
"task."
|
||||
msgstr ""
|
||||
"تعمل ميزة Split-merge في WebODM من خارج الصندوق طالما أن عقد المعالجة تدعم "
|
||||
"الدمج المقسم ، من خلال تمكين خيار `` -split '' عند إنشاء مهمة جديدة."
|
||||
|
||||
#: ../../source/large.rst:13
|
||||
# 7c1cb609f5c74801ba89894fb5974978
|
||||
#: ../../../large.rst:13
|
||||
msgid "Calibrate images"
|
||||
msgstr ""
|
||||
msgstr "معايرة الصور"
|
||||
|
||||
#: ../../source/large.rst:15
|
||||
# a5852d851b3c4557a860c07a9a876368
|
||||
#: ../../../large.rst:15
|
||||
msgid ""
|
||||
"Image calibration is recommended (but not required) for large datasets "
|
||||
"because error propagation due to image distortion could cause a bowl "
|
||||
"effect on the models. Calibration instructions can be found at "
|
||||
"`Calibrate Images <tutorials.html#calibrating-the-camera>`_."
|
||||
"because error propagation due to image distortion could cause a bowl effect "
|
||||
"on the models. Calibration instructions can be found at `Calibrate "
|
||||
"Images <tutorials.html#calibrating-the-camera>`_."
|
||||
msgstr ""
|
||||
"يوصى بمعايرة الصورة (ولكن ليس مطلوبًا) لمجموعات البيانات الكبيرة لأن انتشار "
|
||||
"الخطأ بسبب تشوه الصورة يمكن أن يسبب تأثير الوعاء على النماذج. يمكن العثور "
|
||||
"على تعليمات المعايرة في `Calibrate Images <tutorials.html#calibrating-the-"
|
||||
"camera>`_."
|
||||
|
||||
#: ../../source/large.rst:21
|
||||
# bb110a174c5f40ec9d3517e5eabbd887
|
||||
#: ../../../large.rst:21
|
||||
msgid ""
|
||||
"Bowling effect on point cloud over 13,000+ image dataset collected by "
|
||||
"World Bank Tanzania over the flood prone Msimbasi Basin, Dar es Salaam, "
|
||||
"Tanzania."
|
||||
"Bowling effect on point cloud over 13,000+ image dataset collected by World "
|
||||
"Bank Tanzania over the flood prone Msimbasi Basin, Dar es Salaam, Tanzania."
|
||||
msgstr ""
|
||||
"تأثير البولينج على السحابة النقطية أكثر من 13000 مجموعة بيانات للصور تم "
|
||||
"جمعها من قبل البنك الدولي في تنزانيا حول حوض الفيضانات المعرض للفيضانات ، "
|
||||
"دار السلام ، تنزانيا."
|
||||
|
||||
#: ../../source/large.rst:24
|
||||
# 0967d468c7144fc5bd2132400d045215
|
||||
#: ../../../large.rst:24
|
||||
msgid "Local Split-Merge"
|
||||
msgstr ""
|
||||
msgstr "دمج التجزئة المحلية"
|
||||
|
||||
#: ../../source/large.rst:26
|
||||
# 2e2ad9be96fa496bb5ab7db7b677f5df
|
||||
#: ../../../large.rst:26
|
||||
msgid ""
|
||||
"Splitting a dataset into more manageable submodels and sequentially "
|
||||
"processing all submodels on the same machine is easy! Just use "
|
||||
"``--split`` and ``--split-overlap`` to decide the the average number of "
|
||||
"images per submodels and the overlap (in meters) between submodels "
|
||||
"respectively"
|
||||
"processing all submodels on the same machine is easy! Just use ``--split`` "
|
||||
"and ``--split-overlap`` to decide the the average number of images per "
|
||||
"submodels and the overlap (in meters) between submodels respectively"
|
||||
msgstr ""
|
||||
"إن تقسيم مجموعة البيانات إلى نماذج فرعية أكثر قابلية للإدارة ومعالجة جميع "
|
||||
"النماذج الفرعية على نفس الجهاز بالتتابع أمر سهل! ما عليك سوى استخدام \"--"
|
||||
"split\" و \"--split-interap\" لتحديد متوسط عدد الصور لكل نماذج فرعية "
|
||||
"والتداخل (بالأمتار) بين النماذج الفرعية على التوالي"
|
||||
|
||||
#: ../../source/large.rst:32
|
||||
# 0aeee1b4863b45729bc6cbf63b6b1d84
|
||||
#: ../../../large.rst:32
|
||||
msgid ""
|
||||
"If you already know how you want to split the dataset, you can provide "
|
||||
"that information and it will be used instead of the clustering algorithm."
|
||||
"If you already know how you want to split the dataset, you can provide that "
|
||||
"information and it will be used instead of the clustering algorithm."
|
||||
msgstr ""
|
||||
"إذا كنت تعرف بالفعل كيف تريد تقسيم مجموعة البيانات ، يمكنك تقديم هذه "
|
||||
"المعلومات وسيتم استخدامها بدلاً من خوارزمية التجميع."
|
||||
|
||||
#: ../../source/large.rst:34
|
||||
# 175b97d3d6a44086be4f0cdabfb6fe95
|
||||
#: ../../../large.rst:34
|
||||
msgid ""
|
||||
"The grouping can be provided by adding a file named image_groups.txt in "
|
||||
"the main dataset folder. The file should have one line per image. Each "
|
||||
"line should have two words: first the name of the image and second the "
|
||||
"name of the group it belongs to. For example::"
|
||||
"The grouping can be provided by adding a file named image_groups.txt in the "
|
||||
"main dataset folder. The file should have one line per image. Each line "
|
||||
"should have two words: first the name of the image and second the name of "
|
||||
"the group it belongs to. For example::"
|
||||
msgstr ""
|
||||
"مكن توفير التجميع عن طريق إضافة ملف باسم image_groups.txt في مجلد مجموعة "
|
||||
"البيانات الرئيسي. يجب أن يحتوي الملف على سطر واحد لكل صورة. يجب أن يحتوي كل "
|
||||
"سطر على كلمتين: أولاً اسم الصورة وثانيًا اسم المجموعة التي تنتمي إليها. "
|
||||
"فمثلا::"
|
||||
|
||||
#: ../../source/large.rst:42
|
||||
# 20c59dc7a68941e89e8369bd6026f2ff
|
||||
#: ../../../large.rst:42
|
||||
msgid ""
|
||||
"will create 3 submodels. Make sure to pass ``--split-overlap 0`` if you "
|
||||
"manually provide a ``image_groups.txt`` file."
|
||||
msgstr ""
|
||||
"سيتم إنشاء 3 نماذج فرعية. تأكد من تمرير \"--split-overap 0\" إذا قدمت يدويًا"
|
||||
" ملف `` image_groups.txt ''."
|
||||
|
||||
#: ../../source/large.rst:46
|
||||
# f821d7b1316a4f81830050135f38ec62
|
||||
#: ../../../large.rst:46
|
||||
msgid "Distributed Split-Merge"
|
||||
msgstr ""
|
||||
msgstr "دمج سبليت الموزعة"
|
||||
|
||||
#: ../../source/large.rst:48
|
||||
# f170f960ba414793b7f657bb74d70937
|
||||
#: ../../../large.rst:48
|
||||
msgid ""
|
||||
"ODM can also automatically distribute the processing of each submodel to "
|
||||
"multiple machines via `NodeODM "
|
||||
"<https://github.com/OpenDroneMap/NodeODM>`_ nodes, orchestrated via "
|
||||
"multiple machines via `NodeODM <https://github.com/OpenDroneMap/NodeODM>`_ "
|
||||
"nodes, orchestrated via `ClusterODM "
|
||||
"<https://github.com/OpenDroneMap/ClusterODM>`_."
|
||||
msgstr ""
|
||||
"يمكن لـ ODM أيضًا توزيع معالجة كل نموذج فرعي تلقائيًا على أجهزة متعددة عبر "
|
||||
"`NodeODM <https://github.com/OpenDroneMap/NodeODM>`_ nodes, مدبرة عبر "
|
||||
"`ClusterODM <https://github.com/OpenDroneMap/ClusterODM>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:55
|
||||
# 09a33b36dab54c42a8ce360deacaf649
|
||||
#: ../../../large.rst:55
|
||||
msgid "Getting Started with Distributed Split-Merge"
|
||||
msgstr ""
|
||||
msgstr "الشروع في البدء في عملية دمج التجزئة الموزعة"
|
||||
|
||||
#: ../../source/large.rst:57
|
||||
# af83a83165d8401396aab49b8744a62b
|
||||
#: ../../../large.rst:57
|
||||
msgid "The first step is start ClusterODM"
|
||||
msgstr ""
|
||||
msgstr "الخطوة الأولى هي بدء ClusterODM"
|
||||
|
||||
#: ../../source/large.rst:63
|
||||
# 6d4217467bf544e9a7ad1ac56e9f9973
|
||||
#: ../../../large.rst:63
|
||||
msgid ""
|
||||
"Then on each machine you want to use for processing, launch a NodeODM "
|
||||
"instance via"
|
||||
msgstr ""
|
||||
msgstr "ثم على كل جهاز تريد استخدامه للمعالجة ، قم بتشغيل مثيل NodeODM عبر"
|
||||
|
||||
#: ../../source/large.rst:69
|
||||
# f7f5d656ce9f46d89eaa1769c27ba6e5
|
||||
#: ../../../large.rst:69
|
||||
msgid ""
|
||||
"Connect via telnet to ClusterODM and add the IP addresses/port of the "
|
||||
"machines running NodeODM"
|
||||
msgstr ""
|
||||
"اتصل عبر Telnet بـ ClusterODM وأضف عناوين IP / منفذ الأجهزة التي تعمل بـ "
|
||||
"NodeODM"
|
||||
|
||||
#: ../../source/large.rst:84
|
||||
msgid "Make sure you are running version ``1.5.1`` or higher of the NodeODM API."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:86
|
||||
# b6440814204a44fd9b9cbde1ff322cc3
|
||||
#: ../../../large.rst:84
|
||||
msgid ""
|
||||
"At this point, simply use the ``--sm-cluster`` option to enable "
|
||||
"distributed split-merge"
|
||||
msgstr ""
|
||||
"Make sure you are running version ``1.5.1`` or higher of the NodeODM API."
|
||||
msgstr "تأكد من تشغيل الإصدار 1.5.1 أو أعلى من NodeODM API"
|
||||
|
||||
#: ../../source/large.rst:93
|
||||
# 42d5b57f70b54515892481ba4875365b
|
||||
#: ../../../large.rst:86
|
||||
msgid ""
|
||||
"At this point, simply use the ``--sm-cluster`` option to enable distributed "
|
||||
"split-merge"
|
||||
msgstr ""
|
||||
"عند هذه النقطة ، ما عليك سوى استخدام خيار ``--sm-cluster`` لتمكين دمج "
|
||||
"التقسيم الموزع"
|
||||
|
||||
# 1ff052ee47864108abd13c2ca2b6eeef
|
||||
#: ../../../large.rst:93
|
||||
msgid "Understanding the Cluster"
|
||||
msgstr ""
|
||||
msgstr "فهم الكتلة"
|
||||
|
||||
#: ../../source/large.rst:95
|
||||
# 18e376a78edf468088b5efbd939c0bbf
|
||||
#: ../../../large.rst:95
|
||||
msgid ""
|
||||
"When connected via telnet, it is possible to interrogate what is "
|
||||
"happening on the cluster. For example, we can use the command HELP to "
|
||||
"find out available commands"
|
||||
"When connected via telnet, it is possible to interrogate what is happening "
|
||||
"on the cluster. For example, we can use the command HELP to find out "
|
||||
"available commands"
|
||||
msgstr ""
|
||||
"ند الاتصال عبر telnet ، من الممكن استجواب ما يحدث على الكتلة. على سبيل "
|
||||
"المثال ، يمكننا استخدام الأمر HELP لمعرفة الأوامر المتاحة"
|
||||
|
||||
#: ../../source/large.rst:118
|
||||
# 1494dbd111a64a7e9075a9c20a0c12d9
|
||||
#: ../../../large.rst:118
|
||||
msgid ""
|
||||
"If, for example, the NodeODM instance wasn't active when ClusterODM "
|
||||
"started, we might list nodes and see something as follows"
|
||||
"If, for example, the NodeODM instance wasn't active when ClusterODM started,"
|
||||
" we might list nodes and see something as follows"
|
||||
msgstr ""
|
||||
"إذا ، على سبيل المثال ، لم يكن مثيل NodeODM نشطًا عند بدء ClusterODM ، فقد "
|
||||
"ندرج العقد ونرى شيئًا كالتالي"
|
||||
|
||||
#: ../../source/large.rst:125
|
||||
# 20e68e67542e4049b232b7635d88760b
|
||||
#: ../../../large.rst:125
|
||||
msgid ""
|
||||
"To address this, we can start up our local node (if not already started), "
|
||||
"and then perform a ``NODE UPDATE``"
|
||||
msgstr ""
|
||||
"لمعالجة هذا ، يمكننا بدء العقدة المحلية الخاصة بنا (إذا لم تكن قد بدأت "
|
||||
"بالفعل) ، ثم إجراء ``تحديث العقدة``"
|
||||
|
||||
#: ../../source/large.rst:135
|
||||
# 33eecf83e3124b59a7d0c13af09e04a2
|
||||
#: ../../../large.rst:135
|
||||
msgid "Accessing the Logs"
|
||||
msgstr ""
|
||||
msgstr "الوصول إلى السجلات"
|
||||
|
||||
#: ../../source/large.rst:137
|
||||
# def6c238d7864b5382c8a0c925a3c6e3
|
||||
#: ../../../large.rst:137
|
||||
msgid ""
|
||||
"While a process is running, it is also possible to list the tasks, and "
|
||||
"view the task output"
|
||||
msgstr ""
|
||||
"While a process is running, it is also possible to list the tasks, and view "
|
||||
"the task output"
|
||||
msgstr "أثناء تشغيل العملية ، من الممكن أيضًا سرد المهام ، وعرض إخراج المهمة"
|
||||
|
||||
#: ../../source/large.rst:145
|
||||
# 2a15305d8ba94ce0bdb2d07174a39b0f
|
||||
#: ../../../large.rst:145
|
||||
msgid "Autoscaling ClusterODM"
|
||||
msgstr ""
|
||||
msgstr "أوتوسكالينج ClusterODM"
|
||||
|
||||
#: ../../source/large.rst:147
|
||||
# 9ec4019144e94b0eb0ab5f4325320568
|
||||
#: ../../../large.rst:147
|
||||
msgid ""
|
||||
"ClusterODM also includes the option to autoscale on multiple platforms, "
|
||||
"including, to date, Amazon and Digital Ocean. This allows users to reduce "
|
||||
"costs associated with always-on instances as well as being able to scale "
|
||||
"processing based on demand."
|
||||
msgstr ""
|
||||
"يتضمن ClusterODM أيضًا خيار القياس التلقائي على منصات متعددة ، بما في ذلك "
|
||||
"حتى الآن ، أمازون والمحيط الرقمي. يسمح ذلك للمستخدمين بتقليل التكاليف "
|
||||
"المرتبطة بالمثيلات التي تعمل دائمًا بالإضافة إلى القدرة على توسيع نطاق "
|
||||
"المعالجة بناءً على الطلب."
|
||||
|
||||
#: ../../source/large.rst:149
|
||||
# 62b6f826c2c643e0901155b8e13ae32b
|
||||
#: ../../../large.rst:149
|
||||
msgid "To setup autoscaling you must:"
|
||||
msgstr ""
|
||||
msgstr "لإعداد القياس التلقائي ، يجب عليك:"
|
||||
|
||||
#: ../../source/large.rst:151
|
||||
msgid "Have a functioning version of NodeJS installed and then install ClusterODM"
|
||||
msgstr ""
|
||||
# 1f57a583ee064aadaa3feee9c394eafc
|
||||
#: ../../../large.rst:151
|
||||
msgid ""
|
||||
"Have a functioning version of NodeJS installed and then install ClusterODM"
|
||||
msgstr "قم بتثبيت إصدار فعال من NodeJS ثم قم بتثبيت ClusterODM"
|
||||
|
||||
#: ../../source/large.rst:159
|
||||
# 717a4e330335494bb0df832234fa0032
|
||||
#: ../../../large.rst:159
|
||||
msgid "Make sure docker-machine is installed."
|
||||
msgstr ""
|
||||
msgstr "تأكد من تثبيت آلة عامل الميناء."
|
||||
|
||||
#: ../../source/large.rst:160
|
||||
# 199f29aa6b7f4f409bb92e6c3cb5bf16
|
||||
#: ../../../large.rst:160
|
||||
msgid "Setup a S3-compatible bucket for storing results."
|
||||
msgstr ""
|
||||
msgstr "قم بإعداد دلو متوافق مع S3 لتخزين النتائج."
|
||||
|
||||
#: ../../source/large.rst:161
|
||||
# 6326931fadb04511aeefe580135ad3a2
|
||||
#: ../../../large.rst:161
|
||||
msgid ""
|
||||
"Create a configuration file for `DigitalOcean "
|
||||
"<https://github.com/OpenDroneMap/ClusterODM/blob/master/docs/digitalocean.md>`_"
|
||||
" or `Amazon Web Services "
|
||||
"<https://github.com/OpenDroneMap/ClusterODM/blob/master/docs/aws.md>`_."
|
||||
msgstr ""
|
||||
"قم بإنشاء ملف تكوين لـ `DigitalOcean "
|
||||
"<https://github.com/OpenDroneMap/ClusterODM/blob/master/docs/digitalocean.md>`_"
|
||||
" or `Amazon Web Services "
|
||||
"<https://github.com/OpenDroneMap/ClusterODM/blob/master/docs/aws.md>`_."
|
||||
|
||||
#: ../../source/large.rst:163
|
||||
# 24f1bc1a5a1045b5a066cb88d855dac6
|
||||
#: ../../../large.rst:163
|
||||
msgid "You can then launch ClusterODM with"
|
||||
msgstr ""
|
||||
msgstr "يمكنك بعد ذلك تشغيل ClusterODM باستخدام"
|
||||
|
||||
#: ../../source/large.rst:169
|
||||
# cfd356de2d654bf891a32218437a3674
|
||||
#: ../../../large.rst:169
|
||||
msgid "You should see something similar to following messages in the console"
|
||||
msgstr ""
|
||||
msgstr "من المفترض أن ترى شيئًا مشابهًا للرسائل التالية في وحدة التحكم"
|
||||
|
||||
#: ../../source/large.rst:177
|
||||
#, python-format
|
||||
# e70048dcf8f24f71bc79a7051c51a05f
|
||||
#: ../../../large.rst:177
|
||||
msgid ""
|
||||
"You should always have at least one static NodeODM node attached to "
|
||||
"ClusterODM, even if you plan to use the autoscaler for all processing. If "
|
||||
"you setup auto scaling, you can't have zero nodes and rely 100% on the "
|
||||
"autoscaler. You need to attach a NodeODM node to act as the \"reference "
|
||||
"node\" otherwise ClusterODM will not know how to handle certain requests "
|
||||
"(for the forwarding the UI, for validating options prior to spinning up "
|
||||
"an instance, etc.). For this purpose, you should add a \"dummy\" NodeODM "
|
||||
"node and lock it"
|
||||
"(for the forwarding the UI, for validating options prior to spinning up an "
|
||||
"instance, etc.). For this purpose, you should add a \"dummy\" NodeODM node "
|
||||
"and lock it"
|
||||
msgstr ""
|
||||
"يجب أن يكون لديك دائمًا عقدة NodeODM ثابتة واحدة على الأقل متصلة بـ "
|
||||
"ClusterODM ، حتى إذا كنت تخطط لاستخدام أداة autoscaler لجميع عمليات "
|
||||
"المعالجة. إذا قمت بإعداد التحجيم التلقائي ، فلا يمكن أن يكون لديك صفر عقد "
|
||||
"وتعتمد 100٪ على أداة القسط الآلي. تحتاج إلى إرفاق عقدة NodeODM لتكون بمثابة "
|
||||
"\"العقدة المرجعية\" وإلا فلن يعرف ClusterODM كيفية التعامل مع طلبات معينة "
|
||||
"(لإعادة توجيه واجهة المستخدم ، للتحقق من صحة الخيارات قبل تدوير مثيل ، وما "
|
||||
"إلى ذلك). لهذا الغرض ، يجب عليك إضافة عقدة NodeODM \"وهمية\" وقفلها"
|
||||
|
||||
#: ../../source/large.rst:187
|
||||
# 534c507b01064a47810c210e1bb41569
|
||||
#: ../../../large.rst:187
|
||||
msgid "This way all tasks will be automatically forwarded to the autoscaler."
|
||||
msgstr ""
|
||||
msgstr "بهذه الطريقة ستتم إعادة توجيه جميع المهام تلقائيًا إلى أوتوسكالر."
|
||||
|
||||
#: ../../source/large.rst:190
|
||||
# 69765d62d9bb44979d730a3aee0908c7
|
||||
#: ../../../large.rst:190
|
||||
msgid "Limitations"
|
||||
msgstr ""
|
||||
msgstr "محددات"
|
||||
|
||||
#: ../../source/large.rst:192
|
||||
# bf357933f5f442d2837b2682b0ad9bb2
|
||||
#: ../../../large.rst:192
|
||||
msgid ""
|
||||
"The 3D textured meshes are currently not being merged as part of the "
|
||||
"workflow (only point clouds, DEMs and orthophotos are)."
|
||||
msgstr ""
|
||||
"لا يتم دمج الشبكات ثلاثية الأبعاد في الوقت الحالي كجزء من سير العمل (فقط "
|
||||
"الغيوم النقطية ، DEMs و orthophotos هي)."
|
||||
|
||||
#: ../../source/large.rst:194
|
||||
# 8e1fa32d457445b489bc403442ae7fd5
|
||||
#: ../../../large.rst:194
|
||||
msgid ""
|
||||
"GCPs are fully supported, however, there needs to be at least 3 GCP "
|
||||
"points on each submodel for the georeferencing to take place. If a "
|
||||
"submodel has fewer than 3 GCPs, a combination of the remaining GCPs + "
|
||||
"EXIF data will be used instead (which is going to be less accurate). We "
|
||||
"recommend using the ``image_groups.txt`` file to accurately control the "
|
||||
"submodel split when using GCPs."
|
||||
"GCPs are fully supported, however, there needs to be at least 3 GCP points "
|
||||
"on each submodel for the georeferencing to take place. If a submodel has "
|
||||
"fewer than 3 GCPs, a combination of the remaining GCPs + EXIF data will be "
|
||||
"used instead (which is going to be less accurate). We recommend using the "
|
||||
"``image_groups.txt`` file to accurately control the submodel split when "
|
||||
"using GCPs."
|
||||
msgstr ""
|
||||
"يتم دعم GCP بشكل كامل ، ومع ذلك ، يجب أن يكون هناك 3 نقاط GCP على الأقل في "
|
||||
"كل نموذج فرعي حتى يتم إجراء الإشارة الجغرافية. إذا كان النموذج الفرعي يحتوي "
|
||||
"على أقل من 3 من نقاط Google Cloud Platform ، فسيتم استخدام مجموعة من بيانات "
|
||||
"GCPs + EXIF المتبقية بدلاً من ذلك (والتي ستكون أقل دقة). نوصي باستخدام ملف"
|
||||
" `` image_groups.txt '' للتحكم بدقة في تقسيم النموذج الفرعي عند استخدام GCP."
|
||||
|
||||
#: ../../source/large.rst:197
|
||||
# 1597b856001e4334a4df3555c8416ee1
|
||||
#: ../../../large.rst:197
|
||||
msgid "Acknowledgments"
|
||||
msgstr ""
|
||||
msgstr "شكر وتقدير"
|
||||
|
||||
#: ../../source/large.rst:198
|
||||
# ec973929d9d947be90f0859358cc398c
|
||||
#: ../../../large.rst:198
|
||||
msgid ""
|
||||
"Huge props to Pau and the folks at Mapillary for their amazing "
|
||||
"contributions to OpenDroneMap through their OpenSfM code, which is a key "
|
||||
"component of the split-merge pipeline. We look forward to further pushing"
|
||||
" the limits of OpenDroneMap and seeing how big a dataset we can process."
|
||||
"Huge props to Pau and the folks at Mapillary for their amazing contributions"
|
||||
" to OpenDroneMap through their OpenSfM code, which is a key component of the"
|
||||
" split-merge pipeline. We look forward to further pushing the limits of "
|
||||
"OpenDroneMap and seeing how big a dataset we can process."
|
||||
msgstr ""
|
||||
"الدعائم الضخمة لباو والناس في Mapillary لمساهماتهم المذهلة في OpenDroneMap "
|
||||
"من خلال كود OpenSfM الخاص بهم ، والذي يعد مكونًا رئيسيًا لخط الأنابيب "
|
||||
"المدمج. نحن نتطلع إلى زيادة حدود OpenDroneMap ومعرفة مدى ضخامة مجموعة "
|
||||
"البيانات التي يمكننا معالجتها."
|
||||
|
||||
#: ../../source/large.rst:200
|
||||
# 87ebd0f900e74e17b1cdb97ea39eafe1
|
||||
#: ../../../large.rst:200
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/large.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
"`ساعد في تحرير هذه المستندات! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/large.rst>`_"
|
||||
|
|
Plik binarny nie jest wyświetlany.
|
@ -1,77 +1,103 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
# This file is distributed under the same license as the OpenDroneMap package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Khadija Abdulla <khastylez@gmail.com>, 2020
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"POT-Creation-Date: 2020-07-21 17:01-0400\n"
|
||||
"PO-Revision-Date: 2020-07-21 21:10+0000\n"
|
||||
"Last-Translator: Khadija Abdulla <khastylez@gmail.com>, 2020\n"
|
||||
"Language-Team: Arabic (https://www.transifex.com/americanredcross/teams/111882/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.6.0\n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#: ../../source/multispectral.rst:2
|
||||
# 87c9cb4a7b2b478387fd990c81927150
|
||||
#: ../../../multispectral.rst:2
|
||||
msgid "Multispectral Support"
|
||||
msgstr ""
|
||||
msgstr "دعم متعدد الأطياف "
|
||||
|
||||
#: ../../source/multispectral.rst:4
|
||||
# 067b863268c2477bb94a7b6aaebab68f
|
||||
#: ../../../multispectral.rst:4
|
||||
msgid ""
|
||||
"Since version 0.9.9 ODM has basic support for radiometric normalization, "
|
||||
"which is able to generate reflectance orthophotos from multispectral "
|
||||
"cameras. Multispectral cameras capture multiple shots of the scene using "
|
||||
"different band sensors."
|
||||
msgstr ""
|
||||
"منذ الإصدار 0.9.9 ODM لديه دعم أساسي للتطبيع الإشعاعي ، وهو قادر على توليد "
|
||||
"صور انعكاسية من الكاميرات متعددة الأطياف. تلتقط الكاميرات متعددة الأطياف "
|
||||
"لقطات متعددة للمشهد باستخدام مستشعرات نطاق مختلفة."
|
||||
|
||||
#: ../../source/multispectral.rst:7
|
||||
# b8dcb9bc7b7f4fffa0a8c9d75c0da9ca
|
||||
#: ../../../multispectral.rst:7
|
||||
msgid "Hardware"
|
||||
msgstr ""
|
||||
msgstr "المعدات"
|
||||
|
||||
#: ../../source/multispectral.rst:9
|
||||
# 1c8ec56af3bc4fe5afdcb43f8b1fb149
|
||||
#: ../../../multispectral.rst:9
|
||||
msgid ""
|
||||
"While we aim to support as many cameras as possible, multispectral "
|
||||
"support has been developed using the following cameras, so they will work"
|
||||
" better:"
|
||||
"While we aim to support as many cameras as possible, multispectral support "
|
||||
"has been developed using the following cameras, so they will work better:"
|
||||
msgstr ""
|
||||
"بينما نهدف إلى دعم أكبر عدد ممكن من الكاميرات ، فقد تم تطوير دعم متعدد "
|
||||
"الأطياف باستخدام الكاميرات التالية ، لذا ستعمل بشكل أفضل:"
|
||||
|
||||
#: ../../source/multispectral.rst:11
|
||||
# 2b3e96533ded49da9ef461dc8f54d720
|
||||
#: ../../../multispectral.rst:11
|
||||
msgid "`MicaSense RedEdge-MX and Altum <https://www.micasense.com/>`_"
|
||||
msgstr ""
|
||||
msgstr "`MicaSense RedEdge-MX and Altum <https://www.micasense.com/>`_"
|
||||
|
||||
#: ../../source/multispectral.rst:12
|
||||
# ce4bd2fe479f45c9a851203698d34a39
|
||||
#: ../../../multispectral.rst:12
|
||||
msgid "`Sentera 6X <https://sentera.com/6x/>`_"
|
||||
msgstr ""
|
||||
msgstr "`Sentera 6X <https://sentera.com/6x/>`_"
|
||||
|
||||
#: ../../source/multispectral.rst:14
|
||||
# 3acaad56c8ed48aba2f6bbb7e7963587
|
||||
#: ../../../multispectral.rst:14
|
||||
msgid ""
|
||||
"Other cameras might also work. You can help us expand this list by "
|
||||
"`sharing datasets <https://community.opendronemap.org/c/datasets/10>`_ "
|
||||
"captured with other cameras."
|
||||
"Other cameras might also work. You can help us expand this list by `sharing "
|
||||
"datasets <https://community.opendronemap.org/c/datasets/10>`_ captured with "
|
||||
"other cameras."
|
||||
msgstr ""
|
||||
"قد تعمل الكاميرات الأخرى أيضًا. يمكنك مساعدتنا في توسيع هذه القائمة من خلال "
|
||||
"`مشاركة مجموعات البيانات "
|
||||
"<https://community.opendronemap.org/c/datasets/10>`_ تم التقاطها بكاميرات "
|
||||
"أخرى."
|
||||
|
||||
#: ../../source/multispectral.rst:17
|
||||
# 95652e4bd93440a098146431e52dbfbd
|
||||
#: ../../../multispectral.rst:17
|
||||
msgid "Usage"
|
||||
msgstr ""
|
||||
msgstr "الاستخدام"
|
||||
|
||||
#: ../../source/multispectral.rst:19
|
||||
# c7362ff9d6ae4d6bbfc4b41bcbd7d0b4
|
||||
#: ../../../multispectral.rst:19
|
||||
msgid ""
|
||||
"Process all the images from all bands at once (do not separate the bands "
|
||||
"into multiple folders) and pass the `--radiometric-calibration` parameter"
|
||||
" to enable radiometric normalization. If the images are part of a multi-"
|
||||
"camera setup, the resulting orthophoto will have N bands, one for each "
|
||||
"camera (+ alpha)."
|
||||
"into multiple folders) and pass the `--radiometric-calibration` parameter to"
|
||||
" enable radiometric normalization. If the images are part of a multi-camera "
|
||||
"setup, the resulting orthophoto will have N bands, one for each camera (+ "
|
||||
"alpha)."
|
||||
msgstr ""
|
||||
"قم بمعالجة جميع الصور من جميع النطاقات دفعة واحدة (لا تفصل النطاقات إلى "
|
||||
"مجلدات متعددة) واجتاز المعلمة \"- معايرة قياس الإشعاع\" لتمكين التطبيع "
|
||||
"الإشعاعي. إذا كانت الصور جزءًا من إعداد متعدد الكاميرات ، فستحتوي الصورة "
|
||||
"المنتخبة الناتجة على نطاقات N ، واحدة لكل كاميرا (+ ألفا)."
|
||||
|
||||
#: ../../source/multispectral.rst:25
|
||||
# a36abb316e2d4fbfa64247b874763e70
|
||||
#: ../../../multispectral.rst:25
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/multispectral.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
"`ساعد في تحرير هذه المستندات! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/multispectral.rst>`_"
|
||||
|
|
Plik binarny nie jest wyświetlany.
|
@ -1,141 +1,178 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Khadija Abdulla <khastylez@gmail.com>, 2020
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"POT-Creation-Date: 2020-07-21 17:01-0400\n"
|
||||
"PO-Revision-Date: 2020-07-21 21:10+0000\n"
|
||||
"Last-Translator: Khadija Abdulla <khastylez@gmail.com>, 2020\n"
|
||||
"Language-Team: Arabic (https://www.transifex.com/americanredcross/teams/111882/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.6.0\n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#: ../../source/outputs.rst:2
|
||||
# 0363274eec9a4b9c82318f91f7138fa8
|
||||
#: ../../../outputs.rst:2
|
||||
msgid "OpenDroneMap Outputs"
|
||||
msgstr ""
|
||||
msgstr "مخرجات OpenDroneMap"
|
||||
|
||||
#: ../../source/outputs.rst:4
|
||||
# 4d0105590a224be8b3366a34b3ca7dcf
|
||||
#: ../../../outputs.rst:4
|
||||
msgid "Listed below are some of the useful outputs ODM produces."
|
||||
msgstr ""
|
||||
msgstr "فيما يلي بعض المخرجات المفيدة التي تنتجها ODM."
|
||||
|
||||
#: ../../source/outputs.rst:7
|
||||
# e4c5e56bafa147fab888836f5d3ee12d
|
||||
#: ../../../outputs.rst:7
|
||||
msgid "Point Cloud"
|
||||
msgstr ""
|
||||
msgstr "سحابة نقطة"
|
||||
|
||||
#: ../../source/outputs.rst:9
|
||||
# e5a47a5f7e9048b9a271385ca20dff58
|
||||
#: ../../../outputs.rst:9
|
||||
msgid ""
|
||||
"``odm_georeferencing/odm_georeferenced_model.ply/laz/csv`` -- The "
|
||||
"georeferenced point cloud in different file formats"
|
||||
msgstr ""
|
||||
"odm_georeferencing/odm_georeferenced_model.ply/laz/csv`` -- سحابة مرجعية "
|
||||
"جغرافية في تنسيقات ملفات مختلفة"
|
||||
|
||||
#: ../../source/outputs.rst:15
|
||||
# c255fdbb5e244cc59984eeb5c1411b57
|
||||
#: ../../../outputs.rst:15
|
||||
msgid ""
|
||||
"*Point cloud over State University Zanzibar, courtesy of* `Khadija "
|
||||
"Abdullah Ali <https://www.linkedin.com/in/khadija-abdulla-ali-"
|
||||
"56b4044a/>`_"
|
||||
"*Point cloud over State University Zanzibar, courtesy of* `Khadija Abdullah "
|
||||
"Ali <https://www.linkedin.com/in/khadija-abdulla-ali-56b4044a/>`_"
|
||||
msgstr ""
|
||||
"* سحابة نقطة State University Zanzibar, من باب المجاملة* `Khadija Abdullah "
|
||||
"Ali <https://www.linkedin.com/in/khadija-abdulla-ali-56b4044a/>`_"
|
||||
|
||||
#: ../../source/outputs.rst:19
|
||||
# ef280b4664614efb95892f9f3d86a3d0
|
||||
#: ../../../outputs.rst:19
|
||||
msgid "3D Textured Model"
|
||||
msgstr ""
|
||||
msgstr "نموذج محكم ثلاثي الأبعاد"
|
||||
|
||||
#: ../../source/outputs.rst:21
|
||||
# 83eaf395dd13452abe2885162d0d16e6
|
||||
#: ../../../outputs.rst:21
|
||||
msgid ""
|
||||
"``odm_texturing/odm_textured_model.obj`` -- The textured surface mesh "
|
||||
"``odm_texturing/odm_textured_model_geo.obj`` -- The georeferenced and "
|
||||
"textured surface mesh"
|
||||
msgstr ""
|
||||
"``odm_texturing/odm_textured_model.obj`` -- شبكة سطح محكم "
|
||||
"``odm_texturing/odm_textured_model_geo.obj`` -- شبكة السطح ذات المرجعية "
|
||||
"الجغرافية والمحكم"
|
||||
|
||||
#: ../../source/outputs.rst:24
|
||||
# ac92cff17c904762b2fd054257cf64d5
|
||||
#: ../../../outputs.rst:24
|
||||
msgid ""
|
||||
"You can access the point cloud and textured meshes using MeshLab. Open "
|
||||
"MeshLab, and choose File:Import Mesh and choose your textured mesh from a "
|
||||
" location similar to the following: "
|
||||
"``odm_texturing\\odm_textured_model.obj``"
|
||||
"location similar to the following: ``odm_texturing\\odm_textured_model.obj``"
|
||||
msgstr ""
|
||||
"يمكنك الوصول إلى سحابة النقاط والشبكات المزخرفة باستخدام MeshLab. افتح "
|
||||
"MeshLab واختر File: Import Mesh واختر شبكتك المزخرفة من موقع مشابه لما يلي: "
|
||||
"``odm_texturing\\odm_textured_model.obj``"
|
||||
|
||||
#: ../../source/outputs.rst:30
|
||||
# f452c086297841c6b18804010bbf394d
|
||||
#: ../../../outputs.rst:30
|
||||
msgid ""
|
||||
"*Textured mesh courtesy of* `OpenDroneMap "
|
||||
"<https://twitter.com/opendronemap>`_"
|
||||
msgstr ""
|
||||
"* مجاملة شبكة محكم * `OpenDroneMap <https://twitter.com/opendronemap>`_"
|
||||
|
||||
#: ../../source/outputs.rst:33
|
||||
# e7762f4764a944549f8fb90991214af0
|
||||
#: ../../../outputs.rst:33
|
||||
msgid "Orthophoto"
|
||||
msgstr ""
|
||||
msgstr "Orthophoto"
|
||||
|
||||
#: ../../source/outputs.rst:35
|
||||
# 55a73a43fc1e443e8f90f27c4562f1ca
|
||||
#: ../../../outputs.rst:35
|
||||
msgid ""
|
||||
"``odm_orthophoto/odm_orthphoto.png`` -- The orthophoto, but this is a "
|
||||
"simple png, which doesn't have any georeferencing information"
|
||||
"``odm_orthophoto/odm_orthphoto.png`` -- The orthophoto, but this is a simple"
|
||||
" png, which doesn't have any georeferencing information"
|
||||
msgstr ""
|
||||
"``odm_orthophoto/odm_orthphoto.png`` -- orthophoto ، ولكن هذا هو png بسيط ، "
|
||||
"والذي لا يحتوي على أي معلومات عن المراجع الجغرافية"
|
||||
|
||||
#: ../../source/outputs.rst:37
|
||||
# 8487c7b9409e4549bdf74776d7c552b0
|
||||
#: ../../../outputs.rst:37
|
||||
msgid ""
|
||||
"``odm_orthophoto/odm_orthphoto.tif`` -- GeoTIFF Orthophoto. You can use "
|
||||
"it in QGIS as a raster layer."
|
||||
"``odm_orthophoto/odm_orthphoto.tif`` -- GeoTIFF Orthophoto. You can use it "
|
||||
"in QGIS as a raster layer."
|
||||
msgstr ""
|
||||
"``odm_orthophoto/odm_orthphoto.tif`` -- GeoTIFF Orthophoto. يمكنك استخدامه "
|
||||
"في QGIS كطبقة نقطية."
|
||||
|
||||
#: ../../source/outputs.rst:43
|
||||
# f96d614393b3411299358ed2ac8847bd
|
||||
#: ../../../outputs.rst:43
|
||||
msgid ""
|
||||
"*Orthophoto over State University Zanzibar, courtesy of* `Khadija "
|
||||
"Abdullah Ali <https://www.linkedin.com/in/khadija-abdulla-ali-"
|
||||
"56b4044a/>`_"
|
||||
"*Orthophoto over State University Zanzibar, courtesy of* `Khadija Abdullah "
|
||||
"Ali <https://www.linkedin.com/in/khadija-abdulla-ali-56b4044a/>`_"
|
||||
msgstr ""
|
||||
"Orthophoto على جامعة ولاية زنجبار ، بإذن من * `Khadija Abdullah Ali "
|
||||
"<https://www.linkedin.com/in/khadija-abdulla-ali-56b4044a/>`_"
|
||||
|
||||
#: ../../source/outputs.rst:46
|
||||
# 97a9f77304ae4ce487ea62415fbe0e5a
|
||||
#: ../../../outputs.rst:46
|
||||
msgid "DTM/DSM"
|
||||
msgstr ""
|
||||
msgstr "DTM/DSM"
|
||||
|
||||
#: ../../source/outputs.rst:48
|
||||
# cc432c908f294d6a87d3c47274b32de8
|
||||
#: ../../../outputs.rst:48
|
||||
msgid ""
|
||||
"DTM/DSM will only be created if the ``--dtm`` or ``--dsm`` options are "
|
||||
"used. See `tutorial on elevation models "
|
||||
"DTM/DSM will only be created if the ``--dtm`` or ``--dsm`` options are used."
|
||||
" See `tutorial on elevation models "
|
||||
"<https://docs.opendronemap.org/tutorials.html#creating-digital-elevation-"
|
||||
"models>`_ for more options in creating."
|
||||
msgstr ""
|
||||
"DTM/DSM سيتم إنشاؤه فقط في حالة استخدام خيارات \"--dtm\" أو \"--dsm\". انظر "
|
||||
"`البرنامج التعليمي حول نماذج الارتفاع "
|
||||
"<https://docs.opendronemap.org/tutorials.html#creating-digital-elevation-"
|
||||
"models>`_ لمزيد من الخيارات في الإنشاء."
|
||||
|
||||
#: ../../source/outputs.rst:50
|
||||
# 3d6a730458b14794bf7454b4f6e119e4
|
||||
#: ../../../outputs.rst:50
|
||||
msgid "Data will be stored in:"
|
||||
msgstr ""
|
||||
msgstr "سيتم تخزين البيانات في:"
|
||||
|
||||
#: ../../source/outputs.rst:52
|
||||
# abad74d908c04802b1be22686908379e
|
||||
#: ../../../outputs.rst:52
|
||||
msgid "``odm_dem/dtm.tif``"
|
||||
msgstr ""
|
||||
msgstr "``odm_dem/dtm.tif``"
|
||||
|
||||
#: ../../source/outputs.rst:53
|
||||
# d5483e2a7881435c91539b04f55ce113
|
||||
#: ../../../outputs.rst:53
|
||||
msgid "``odm_dem/dsm.tif``"
|
||||
msgstr ""
|
||||
msgstr "``odm_dem/dsm.tif``"
|
||||
|
||||
#: ../../source/outputs.rst:59
|
||||
# 879bdeaa3d8a43519e2552ae4830a3e0
|
||||
#: ../../../outputs.rst:59
|
||||
msgid ""
|
||||
"*Digital surface model over State University Zanzibar, courtesy of* "
|
||||
"`Khadija Abdullah Ali <https://www.linkedin.com/in/khadija-abdulla-ali-"
|
||||
"56b4044a/>`_"
|
||||
"*Digital surface model over State University Zanzibar, courtesy of* `Khadija"
|
||||
" Abdullah Ali <https://www.linkedin.com/in/khadija-abdulla-ali-56b4044a/>`_"
|
||||
msgstr ""
|
||||
"* نموذج سطح رقمي فوق جامعة ولاية زنجبار ، بإذن من * `Khadija Abdullah Ali "
|
||||
"<https://www.linkedin.com/in/khadija-abdulla-ali-56b4044a/>`_"
|
||||
|
||||
#: ../../source/outputs.rst:62
|
||||
# fe6b51da6c9f47a39b7437e0cdfcee35
|
||||
#: ../../../outputs.rst:62
|
||||
msgid "List of all outputs"
|
||||
msgstr ""
|
||||
msgstr "قائمة بجميع المخرجات"
|
||||
|
||||
#: ../../source/outputs.rst:109
|
||||
# 664796b76ddc4919ad9ea2c81918aa6c
|
||||
#: ../../../outputs.rst:109
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/outputs.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "*Textured mesh over State University "
|
||||
#~ "Zanzibar, courtesy of* `Khadija Abdullah "
|
||||
#~ "Ali <https://www.linkedin.com/in/khadija-abdulla-"
|
||||
#~ "ali-56b4044a/>`_"
|
||||
#~ msgstr ""
|
||||
|
||||
"`ساعد في تحرير هذه المستندات! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/outputs.rst>`_"
|
||||
|
|
Plik binarny nie jest wyświetlany.
|
@ -1,92 +1,129 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
# This file is distributed under the same license as the OpenDroneMap package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Khadija Abdulla <khastylez@gmail.com>, 2020
|
||||
# danbjoseph <danbjoseph@gmail.com>, 2020
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"POT-Creation-Date: 2020-07-21 17:01-0400\n"
|
||||
"PO-Revision-Date: 2020-07-21 21:10+0000\n"
|
||||
"Last-Translator: danbjoseph <danbjoseph@gmail.com>, 2020\n"
|
||||
"Language-Team: Arabic (https://www.transifex.com/americanredcross/teams/111882/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.6.0\n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#: ../../source/requesting-features.rst:2
|
||||
# d940e31fefb34ecbb8d9be39288cd73c
|
||||
#: ../../../requesting-features.rst:2
|
||||
msgid "How To Request Features"
|
||||
msgstr ""
|
||||
msgstr "كيفية طلب الميزات"
|
||||
|
||||
#: ../../source/requesting-features.rst:4
|
||||
# 95118bd8b9c649a598c5fe8bff033698
|
||||
#: ../../../requesting-features.rst:4
|
||||
msgid ""
|
||||
"All software needs user feedback and feature requests, to grow and "
|
||||
"maintain alignment with the needs of its users."
|
||||
"All software needs user feedback and feature requests, to grow and maintain "
|
||||
"alignment with the needs of its users."
|
||||
msgstr ""
|
||||
"تحتاج جميع البرامج إلى تعليقات المستخدمين وطلبات الميزات ، لزيادة النمو "
|
||||
"والحفاظ على التوافق مع احتياجات المستخدمين."
|
||||
|
||||
#: ../../source/requesting-features.rst:7
|
||||
# 696e503999524f108ec4e69ad5c38b9a
|
||||
#: ../../../requesting-features.rst:7
|
||||
msgid ""
|
||||
"OpenDroneMap is FOSS software. Free and open source (FOSS) projects are "
|
||||
"interesting from the inside and outside: from the outside, successful "
|
||||
"ones feel like they should be able to do anything, and it’s hard to know "
|
||||
"what a reasonable request is. From the inside of a project, they can feel"
|
||||
" very resource constrained: largely by time, money, and opportunity "
|
||||
"overload."
|
||||
"interesting from the inside and outside: from the outside, successful ones "
|
||||
"feel like they should be able to do anything, and it’s hard to know what a "
|
||||
"reasonable request is. From the inside of a project, they can feel very "
|
||||
"resource constrained: largely by time, money, and opportunity overload."
|
||||
msgstr ""
|
||||
"OpenDroneMap هو برنامج FOSS. تعتبر المشاريع المجانية والمفتوحة المصدر (FOSS)"
|
||||
" مثيرة للاهتمام من الداخل والخارج: من الخارج ، يشعر الناجحون أنه يجب أن "
|
||||
"يكونوا قادرين على القيام بأي شيء ، ومن الصعب معرفة الطلب المعقول. من داخل "
|
||||
"المشروع ، يمكن أن يشعروا بالقيود الكبيرة على الموارد: إلى حد كبير بالوقت "
|
||||
"والمال والفرص الزائدة."
|
||||
|
||||
#: ../../source/requesting-features.rst:13
|
||||
# 1b8acc2a7a29463ca0df0b5f454bc0b7
|
||||
#: ../../../requesting-features.rst:13
|
||||
msgid ""
|
||||
"A feature request can be submitted as issues on the applicable Github "
|
||||
"repository (e.g., `WebODM "
|
||||
"<https://github.com/OpenDroneMap/WebODM/issues>`_ or `ODM "
|
||||
"<https://github.com/OpenDroneMap/ODM/issues>`_ or similar) or more simply"
|
||||
" as a discussion topic on `the community forum "
|
||||
"repository (e.g., `WebODM <https://github.com/OpenDroneMap/WebODM/issues>`_ "
|
||||
"or `ODM <https://github.com/OpenDroneMap/ODM/issues>`_ or similar) or more "
|
||||
"simply as a discussion topic on `the community forum "
|
||||
"<https://community.opendronemap.org/>`_. Try to start by searching these "
|
||||
"sources to see if someone else has already brought it up. Sometimes a "
|
||||
"feature is already in the works, or has at least been discussed."
|
||||
msgstr ""
|
||||
"مكن إرسال طلب الميزة كإصدارات في مستودع Github المعمول به (على سبيل المثال ،"
|
||||
" `WebODM <https://github.com/OpenDroneMap/WebODM/issues>`_ أو `ODM "
|
||||
"<https://github.com/OpenDroneMap/ODM/issues>`_ أو مشابه) أو ببساطة كموضوع "
|
||||
"نقاش في `منتدى المجتمع <https://community.opendronemap.org/>`_. حاول البدء "
|
||||
"بالبحث في هذه المصادر لمعرفة ما إذا كان شخص آخر قد أثارها بالفعل. في بعض "
|
||||
"الأحيان تكون الميزة قيد العمل بالفعل ، أو تمت مناقشتها على الأقل."
|
||||
|
||||
#: ../../source/requesting-features.rst:19
|
||||
# 72a6e0d25ec84002b73a6810ffca914c
|
||||
#: ../../../requesting-features.rst:19
|
||||
msgid ""
|
||||
"And importantly, the trick is to listen: if someone within the project "
|
||||
"says: \"This is a big lift, we need MONEY or TIME or SOMEONE TO HELP CODE"
|
||||
" IT\" (or possibly a combination of the three) then there are two answers"
|
||||
" that work really well in response:"
|
||||
"And importantly, the trick is to listen: if someone within the project says:"
|
||||
" \"This is a big lift, we need MONEY or TIME or SOMEONE TO HELP CODE IT\" "
|
||||
"(or possibly a combination of the three) then there are two answers that "
|
||||
"work really well in response:"
|
||||
msgstr ""
|
||||
"والأهم من ذلك ، أن الخدعة هي الاستماع: إذا قال أحد الأشخاص في المشروع: \"هذا"
|
||||
" رفع كبير ، فنحن بحاجة إلى المال أو الوقت أو شخص ما للمساعدة في ترميزها\" "
|
||||
"(أو ربما مزيج من الثلاثة) ، فهناك إجابتان تعمل بشكل جيد في الاستجابة"
|
||||
|
||||
#: ../../source/requesting-features.rst:23
|
||||
# db0eaf87e7fa4f9f99538ed5dd6b2d66
|
||||
#: ../../../requesting-features.rst:23
|
||||
msgid ""
|
||||
"*Ok. I didn’t know it was a big feature request! I hope someone comes "
|
||||
"along with the necessary resources. As a community member, I would be "
|
||||
"happy to be an early user and tester!*"
|
||||
"*Ok. I didn’t know it was a big feature request! I hope someone comes along "
|
||||
"with the necessary resources. As a community member, I would be happy to be "
|
||||
"an early user and tester!*"
|
||||
msgstr ""
|
||||
"*حسنا. لم أكن أعلم أنه كان طلب ميزة كبيرة! آمل أن يأتي شخص ما مع الموارد "
|
||||
"اللازمة. كعضو في المجتمع ، يسعدني أن أكون مستخدمًا ومُختبِرًا مبكرًا!*"
|
||||
|
||||
#: ../../source/requesting-features.rst:25
|
||||
# d83e0f882cf640539bbdfca6d431241d
|
||||
#: ../../../requesting-features.rst:25
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
msgstr "أو"
|
||||
|
||||
#: ../../source/requesting-features.rst:27
|
||||
# eeb066ea19ea47398930c8e7c724c5a4
|
||||
#: ../../../requesting-features.rst:27
|
||||
msgid ""
|
||||
"*Let’s figure out if we can put together the resources to get this done! "
|
||||
"Here’s what I can contribute toward it: …*"
|
||||
msgstr ""
|
||||
"* دعنا نكتشف ما إذا كان بإمكاننا تجميع الموارد لإنجاز ذلك! إليك ما يمكنني "
|
||||
"المساهمة فيه: ... *"
|
||||
|
||||
#: ../../source/requesting-features.rst:29
|
||||
# 22a7df06b14a4a30a09f34de5c834c28
|
||||
#: ../../../requesting-features.rst:29
|
||||
msgid ""
|
||||
"We are glad you are excited to see new features added to the project. "
|
||||
"Some new features need support, and some are easier to implement. We'll "
|
||||
"do our best to help you understand where your request falls, and we "
|
||||
"appreciate any support you can provide."
|
||||
"We are glad you are excited to see new features added to the project. Some "
|
||||
"new features need support, and some are easier to implement. We'll do our "
|
||||
"best to help you understand where your request falls, and we appreciate any "
|
||||
"support you can provide."
|
||||
msgstr ""
|
||||
"يسعدنا أنك متحمس لرؤية الميزات الجديدة المضافة إلى المشروع. تحتاج بعض "
|
||||
"الميزات الجديدة إلى الدعم ، وبعضها أسهل في التنفيذ. سنبذل قصارى جهدنا "
|
||||
"لمساعدتك على فهم مكان سقوط طلبك ، ونقدر أي دعم يمكنك تقديمه."
|
||||
|
||||
#: ../../source/requesting-features.rst:33
|
||||
# 1dc7be048a46499292c8313b44ebbb79
|
||||
#: ../../../requesting-features.rst:33
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/requesting-"
|
||||
"features.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
"`ساعد في تحرير هذه المستندات! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/requesting-"
|
||||
"features.rst>`_"
|
||||
|
|
Plik binarny nie jest wyświetlany.
|
@ -1,95 +1,128 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
# Translators:
|
||||
# Khadija Abdulla <khastylez@gmail.com>, 2020
|
||||
# danbjoseph <danbjoseph@gmail.com>, 2020
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:01+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"POT-Creation-Date: 2020-07-21 17:01-0400\n"
|
||||
"PO-Revision-Date: 2020-07-21 21:10+0000\n"
|
||||
"Last-Translator: danbjoseph <danbjoseph@gmail.com>, 2020\n"
|
||||
"Language-Team: Arabic (https://www.transifex.com/americanredcross/teams/111882/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.6.0\n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#: ../../source/resources.rst:2
|
||||
# fd0399e9f29e43ee85f633fc5a7d9854
|
||||
#: ../../../resources.rst:2
|
||||
msgid "Additional References"
|
||||
msgstr ""
|
||||
msgstr "مراجع إضافية"
|
||||
|
||||
#: ../../source/resources.rst:5
|
||||
# d3ba9250ce4b482c89983e02f0bb4d9d
|
||||
#: ../../../resources.rst:5
|
||||
msgid "For Users"
|
||||
msgstr ""
|
||||
msgstr "للمستخدمين"
|
||||
|
||||
#: ../../source/resources.rst:7
|
||||
# 2c54ff8efcbb4cd4a1d4426a677a668a
|
||||
#: ../../../resources.rst:7
|
||||
msgid "The following resources are a good place to start:"
|
||||
msgstr ""
|
||||
msgstr "الموارد التالية هي مكان جيد للبدء:"
|
||||
|
||||
#: ../../source/resources.rst:9
|
||||
# 4d7432320ac74422a01020761eaf6f3a
|
||||
#: ../../../resources.rst:9
|
||||
msgid "`README page for ODM <https://github.com/OpenDroneMap/OpenDroneMap>`_"
|
||||
msgstr ""
|
||||
msgstr "`اقرأ الصفحة عن ODM <https://github.com/OpenDroneMap/OpenDroneMap>`_"
|
||||
|
||||
#: ../../source/resources.rst:10
|
||||
# 3bcf9ff9b6e3408f875a614e65332f9b
|
||||
#: ../../../resources.rst:10
|
||||
msgid "`README page for WebODM <https://github.com/OpenDroneMap/WebODM>`_"
|
||||
msgstr ""
|
||||
msgstr "`قراءة صفحة WebODM <https://github.com/OpenDroneMap/WebODM>`_"
|
||||
|
||||
#: ../../source/resources.rst:11
|
||||
# 52d2e948eece4d0d8fe87e3f17bff6dd
|
||||
#: ../../../resources.rst:11
|
||||
msgid ""
|
||||
"`README page for NodeODM <https://github.com/OpenDroneMap/node-"
|
||||
"OpenDroneMap>`_"
|
||||
msgstr ""
|
||||
"`قراءة صفحة NodeODM <https://github.com/OpenDroneMap/node-OpenDroneMap>`_"
|
||||
|
||||
#: ../../source/resources.rst:12
|
||||
# 43b64684e93c41a08607bfd7318b8509
|
||||
#: ../../../resources.rst:12
|
||||
msgid ""
|
||||
"`Ground Control Points Format Specification "
|
||||
"<https://github.com/mapillary/OpenSfM/blob/master/doc/source/gcp.rst>`_"
|
||||
msgstr ""
|
||||
"`مواصفات تنسيق نقاط التحكم الأرضية "
|
||||
"<https://github.com/mapillary/OpenSfM/blob/master/doc/source/gcp.rst>`_"
|
||||
|
||||
#: ../../source/resources.rst:13
|
||||
# b4bbfe51562c46d781908edf80c34abf
|
||||
#: ../../../resources.rst:13
|
||||
msgid "`OpenDroneMap: The Missing Guide <https://odmbook.com/>`_"
|
||||
msgstr ""
|
||||
msgstr "`OpenDroneMap: الدليل المفقود <https://odmbook.com/>`_"
|
||||
|
||||
#: ../../source/resources.rst:16
|
||||
# 60796eb1324b41d5b56f497960451872
|
||||
#: ../../../resources.rst:16
|
||||
msgid "For Developers"
|
||||
msgstr ""
|
||||
msgstr "للمطورين"
|
||||
|
||||
#: ../../source/resources.rst:18
|
||||
msgid "In addition to user resources, we recommend to also read the following:"
|
||||
msgstr ""
|
||||
# 45473074a8b6436f9d842e2c9bb4ca87
|
||||
#: ../../../resources.rst:18
|
||||
msgid ""
|
||||
"In addition to user resources, we recommend to also read the following:"
|
||||
msgstr "بالإضافة إلى موارد المستخدم ، نوصي أيضًا بقراءة ما يلي:"
|
||||
|
||||
#: ../../source/resources.rst:20
|
||||
# cd3029204fde4dd2b6ece3cfe1a2bd6b
|
||||
#: ../../../resources.rst:20
|
||||
msgid "WebODM documentation: https://docs.webodm.org"
|
||||
msgstr ""
|
||||
msgstr "وثائق WebODM: https://docs.webodm.org"
|
||||
|
||||
#: ../../source/resources.rst:21
|
||||
# c6fe70ba85564f3e82f609e7df9f8227
|
||||
#: ../../../resources.rst:21
|
||||
msgid ""
|
||||
"NodeODM API specification: "
|
||||
"https://github.com/OpenDroneMap/NodeODM/blob/master/docs/index.adoc"
|
||||
msgstr ""
|
||||
"مواصفات NodeODM API: "
|
||||
"https://github.com/OpenDroneMap/NodeODM/blob/master/docs/index.adoc"
|
||||
|
||||
#: ../../source/resources.rst:22
|
||||
# b282ab45d280415982d512c91e6b6719
|
||||
#: ../../../resources.rst:22
|
||||
msgid ""
|
||||
"Overview of the ODM pipeline: http://community.opendronemap.org/t/where-"
|
||||
"can-i-find-background-information-on-the-concepts-of-odm/665/2"
|
||||
msgstr ""
|
||||
"نظرة عامة على خط أنابيب ODM: http://community.opendronemap.org/t/where-can-i"
|
||||
"-find-background-information-on-the-concepts-of-odm/665/2"
|
||||
|
||||
#: ../../source/resources.rst:23
|
||||
# edc948c7e2d2431e8b888a7b1a733965
|
||||
#: ../../../resources.rst:23
|
||||
msgid ""
|
||||
"We keep a `section in our forum dedicated to research papers "
|
||||
"<http://community.opendronemap.org/c/ideas-proposals/research-papers>`_. "
|
||||
"This is a valuable place where to read more about state of the art "
|
||||
"research related to structure from motion, multi-view stereo, meshing, "
|
||||
"texturing, etc. which can be used to improve the software."
|
||||
"This is a valuable place where to read more about state of the art research "
|
||||
"related to structure from motion, multi-view stereo, meshing, texturing, "
|
||||
"etc. which can be used to improve the software."
|
||||
msgstr ""
|
||||
"نحتفظ `بقسم في منتدانا مخصص للأوراق البحثية "
|
||||
"<http://community.opendronemap.org/c/ideas-proposals/research-papers>`_. ذا "
|
||||
"مكان قيم لقراءة المزيد عن أحدث الأبحاث المتعلقة بالهيكل من الحركة ، ستيريو "
|
||||
"متعدد الرؤية ، الشبكات ، التركيب ، إلخ. والتي يمكن استخدامها لتحسين "
|
||||
"البرنامج."
|
||||
|
||||
#: ../../source/resources.rst:26
|
||||
# 9653eddbec1b4561addbaa46fe051e06
|
||||
#: ../../../resources.rst:26
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/api.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
"`ساعد في تحرير هذه المستندات! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/api.rst>`_"
|
||||
|
|
Plik binarny nie jest wyświetlany.
Plik diff jest za duży
Load Diff
Plik binarny nie jest wyświetlany.
Plik binarny nie jest wyświetlany.
Plik binarny nie jest wyświetlany.
Plik binarny nie jest wyświetlany.
Plik binarny nie jest wyświetlany.
Plik binarny nie jest wyświetlany.
Plik binarny nie jest wyświetlany.
Plik binarny nie jest wyświetlany.
Plik binarny nie jest wyświetlany.
Plik binarny nie jest wyświetlany.
Plik binarny nie jest wyświetlany.
Plik binarny nie jest wyświetlany.
Plik binarny nie jest wyświetlany.
|
@ -0,0 +1,33 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-21 17:01-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: ../../../arguments.rst:4
|
||||
# 3c050a6e28a542979ddc0687deabc8e3
|
||||
msgid "Options and Flags"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../arguments.rst:6
|
||||
# 22dcd4f93de143d4be348424b5141abe
|
||||
msgid "Arguments::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../arguments.rst:382
|
||||
# 3ce8631539bc46c5a0823cb6065ddf2d
|
||||
msgid "`Help edit these docs! <https://github.com/OpenDroneMap/docs/blob/publish/source/using.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,173 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-21 17:01-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: ../../../contributing.rst:4
|
||||
# 33a2711c05144f9582994fb626017045
|
||||
msgid "How To Contribute"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:6
|
||||
# fd9047989963484db99d88e41c6a763c
|
||||
msgid "OpenDroneMap relies on community contributions. You can contribute in many ways, even if you are not a programmer."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:9
|
||||
# d7a8cfb3ce1c4e789d9bc59089b7af33
|
||||
msgid "Community Forum"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:11
|
||||
# 372bbf306f2e4a60a8915ed2441771d7
|
||||
msgid "If you are looking to get involved, are stuck on a problem, or want to reach out, `the forum <https://community.opendronemap.org/>`_ is a great place to start. You may find your questions already answered or else you can find other useful tips and resources. You can also contribute your open access datasets for others to explore. It is a good place go before submitting bug reports or getting in touch with developers before writing a new feature."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:14
|
||||
# 925012996add420ca56b7ff53828e745
|
||||
msgid "Reporting Bugs"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:16
|
||||
# cfa595af5c7748dea7c279ce2b09160f
|
||||
msgid "Bugs are tracked as Github issues. Please create an issue in the repository and tag it with the Bug tag."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:18
|
||||
# f79279e13ea24b5e8196ae34fb77bb8c
|
||||
msgid "Explain the problem and include additional details to help maintainers reproduce the problem:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:20
|
||||
# 3957ae606cb0425d8a8d6fcb1e639faf
|
||||
msgid "**Use a clear and descriptive title** for the issue to identify the problem."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:21
|
||||
# bdb253d1772f45e7a7ef73e96e4e2654
|
||||
msgid "**Describe the exact steps which reproduce the problem** in as many details as possible. For example, start by explaining how you run ODM (Docker, Vagrant, etc), e.g. which command exactly you used in the terminal. When listing steps, **don't just say what you did, but explain how you did it.**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:22
|
||||
# eebf5329d6344d08b8d6949880fca497
|
||||
msgid "**Provide specific examples to demonstrate the steps.** Include links to files or GitHub projects, or copy/pasteable snippets, which you use in those examples. If you're providing snippets in the issue, use `Markdown code blocks <https://help.github.com/articles/markdown-basics/#multiple-lines>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:23
|
||||
# c6dc25d3a3cc4b188e567e241d3f3a77
|
||||
msgid "**Describe the behavior you observed after following the steps** and point out what exactly is the problem with that behavior."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:24
|
||||
# a4e3ccec200740a0854f45b8c9105728
|
||||
msgid "**Explain which behavior you expected to see instead and why.**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:25
|
||||
# 541a50043a9b4241a4b659662b6e1d30
|
||||
msgid "**Include screenshots and animated GIFs** which show you following the described steps and clearly demonstrate the problem. You can use `this tool to record GIFs on macOS and Windows <http://www.cockos.com/licecap/>`_, and `this tool <https://github.com/colinkeenan/silentcast>`_ or `this one <https://github.com/GNOME/byzanz>`_ on Linux."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:26
|
||||
# 43f98a3d907e487d967f29497574f208
|
||||
msgid "**If the problem is related to performance,** please post your machine's specs (host and guest machine)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:27
|
||||
# 95d28b70f6c745269f2e101c9ebd7872
|
||||
msgid "**If the problem wasn't triggered by a specific action,** describe what you were doing before the problem happened and share more information using the guidelines below."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:29
|
||||
# 7e3a9ff9bd6047cfbb353a9007c072de
|
||||
msgid "Include details about your configuration and environment:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:31
|
||||
# d0b284a2065049f5a2c78f914fd4ee97
|
||||
msgid "**Which version of ODM are you using?** A stable release? a clone of master?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:32
|
||||
# 2c6d40300ba9430a85a83dc23588debb
|
||||
msgid "**What's the name and version of the OS you're using?**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:33
|
||||
# 49f8184463b44d938e19609a806233ea
|
||||
msgid "**Are you running ODM in a virtual machine or Docker?** If so, which VM software are you using and which operating systems and versions are used for the host and the guest?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:36
|
||||
# 3135c11e453247179f8c1c65d5700c63
|
||||
msgid "Template For Submitting Bug Reports"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:69
|
||||
# befb661ef483468296538486ee7c72a1
|
||||
msgid "Pull Requests"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:71
|
||||
# 39056637eeed467b8451dd10998c0783
|
||||
msgid "Include screenshots and animated GIFs in your pull request whenever possible."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:72
|
||||
# b7dbdbac90e84d6284edfd22f4d2b53b
|
||||
msgid "Follow the PEP8 Python Style Guide."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:73
|
||||
# b679a0d7db6246c1a8c40720159e034b
|
||||
msgid "End files with a newline."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:76
|
||||
# dc6b120a67bf4f9684e5bb653290c7cb
|
||||
msgid "Avoid platform-dependent code:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:75
|
||||
# e198baeffa1f4a919d039b18e11ec7f8
|
||||
msgid "Use require('fs-plus').getHomeDirectory() to get the home directory."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:76
|
||||
# 5d00c0c8d3d24347bfaa26f0ebe1e063
|
||||
msgid "Use path.join() to concatenate filenames."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:77
|
||||
# 00cddf0eb7bf4e4bb9a469313a778b3a
|
||||
msgid "Use os.tmpdir() rather than /tmp when you need to reference the temporary directory."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:79
|
||||
# 60e9e81967354752b39a01541d5b2ccf
|
||||
msgid "Using a plain return when returning explicitly at the end of a function."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:79
|
||||
# fc372ffc32604e90890111d4287b33a0
|
||||
msgid "Not return null, return undefined, null, or undefined"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../contributing.rst:81
|
||||
# cbb4ef102fb34a88bc3ccb04d7ff203c
|
||||
msgid "`Help edit these docs! <https://github.com/OpenDroneMap/docs/blob/publish/source/contributing.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,63 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-21 17:01-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: ../../../flying.rst:2
|
||||
# 846d8a3f9d9646e5a43911942183b8c8
|
||||
msgid "Flying Tips"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../flying.rst:4
|
||||
# c96becee56f94efca8b3de336db9d844
|
||||
msgid "The `Humanitarian OpenStreetMap team <https://www.hotosm.org/>`_ has guidelines on `flying for UAV mapping <https://uav-guidelines.openaerialmap.org/>`_:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../flying.rst:6
|
||||
# 4a6f4c2edee741ddac135447436976f7
|
||||
msgid "`Choosing the right UAV <https://uav-guidelines.openaerialmap.org/pages/05-choosing-the-right-uav/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../flying.rst:8
|
||||
# fe7f09d545684117aba61ff9860a51d2
|
||||
msgid "`Choosing the right sensor <https://uav-guidelines.openaerialmap.org/pages/06-choosing-the-sensor/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../flying.rst:10
|
||||
# 6c7947d1197147df9d63e165d11924cb
|
||||
msgid "`Mission preparation <https://uav-guidelines.openaerialmap.org/pages/07-preparing-for-the-uav-mission/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../flying.rst:12
|
||||
# 9b557a1da5cc46af807bcaaa6faee6dd
|
||||
msgid "The guidelines are intended for drone mapping projects on islands, but have general use for all drone mappers."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../flying.rst:14
|
||||
# 44b1eacc4ff2499a8a4e74651b9443e1
|
||||
msgid "See also DroneDeploy's guide on `Making Successful Maps <https://support.dronedeploy.com/docs/making-successful-maps>`_, which provides great tips on mission planning."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../flying.rst:16
|
||||
# 790dc47dea524f9589ab6de072d0febc
|
||||
msgid "Finally, lens distortion is a challenge in projects requiring accurate 3D data. See our section in these docs on `Camera Calibration <tutorials.html#calibrating-the-camera>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../flying.rst:18
|
||||
# 96453509d0ed4fcf97681fe2c9bb7385
|
||||
msgid "`Help edit these docs! <https://github.com/OpenDroneMap/docs/blob/publish/source/flying.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,158 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-21 17:01-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: ../../../gcp.rst:3
|
||||
# 911f0a51699040bbbac8fd6336625beb
|
||||
msgid "Ground Control Points"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:5
|
||||
# 022d5bddc65e48618d8dcfa0a4c6f73d
|
||||
msgid "Ground control points are useful for correcting distortions in the data and referencing the data to know coordinate systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:7
|
||||
# 8452104a74d646fd98667e75940154f9
|
||||
msgid "The format of the GCP file is simple."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:9
|
||||
# dce0e96292f14671b20009aff56908eb
|
||||
msgid "The first line should contain the name of the projection used for the geo coordinates. This can be specified either as a PROJ string (e.g. ``+proj=utm +zone=10 +ellps=WGS84 +datum=WGS84 +units=m +no_defs``), EPSG code (e.g. ``EPSG:4326``) or as a ``WGS84 UTM <zone>[N|S]`` value (eg. ``WGS84 UTM 16N``)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:10
|
||||
# b2b962c0b86148d0baa20170f21a4809
|
||||
msgid "Subsequent lines are the X, Y & Z coordinates, your associated pixels, the image filename and optional extra fields, separated by tabs or spaces:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:11
|
||||
# b14a4632f09d452987da341b4761ee93
|
||||
msgid "Elevation values can be set to \"NaN\" to indicate no value"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:12
|
||||
# 326fc2b4a246402887eec024ee7dc44b
|
||||
msgid "The 7th column (optional) typically contains the label of the GCP."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:14
|
||||
# 7e516e234f5d48b6bdf2452c90949a1e
|
||||
msgid "GCP file format::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:20
|
||||
# cfc779a9cd644757ac87736911a5cb2c
|
||||
msgid "Example::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:27
|
||||
# af0d955959494dfea9d3d9efbb90d333
|
||||
msgid "If you supply a GCP file called ``gcp_list.txt`` then ODM will automatically detect it. If it has another name you can specify using ``--gcp <path>``. If you have a gcp file and want to do georeferencing with exif instead, then you can specify ``--use-exif``. If you have high precision GPS measurements in your images (RTK) and want to use that information along with a gcp file, you can specify ``--force-gps``."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:29
|
||||
# bbde94c6d77e4ebcb74ecec6b26d4752
|
||||
msgid "`This post has some information about placing Ground Control Targets before a flight <http://diydrones.com/profiles/blogs/ground-control-points-gcps-for-aerial-photography>`_, but if you already have images, you can find your own points in the images post facto. It's important that you find high-contrast objects that are found in **at least** 3 photos, and that you find a minimum of 5 objects."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:31
|
||||
# 6b99ba39e0ba4be98be0cf9089458f19
|
||||
msgid "Sharp corners are good picks for GCPs. You should also place/find the GCPs evenly around your survey area."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:33
|
||||
# 2022c1e3d9074c80bc5988fb77630231
|
||||
msgid "The ``gcp_list.txt`` file must be created in the base of your project folder."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:35
|
||||
# d053ffc6a0b44e60be90864b1d0ad399
|
||||
msgid "For good results your file should have a minimum of 15 lines after the header (5 points with 3 images to each point)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:39
|
||||
# 9712bfa7df5343f8b383155a9eee015c
|
||||
msgid "User Interfaces"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:41
|
||||
# 58a11feafc7641fca1250a9e80a9e9a2
|
||||
msgid "You can use one of two user interfaces for creating GCP files:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:43
|
||||
# 84afe5e0d2964247b972da99da981b86
|
||||
msgid "`POSM GCPi <https://github.com/posm/posm-gcpi>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:44
|
||||
# 60450f4c04ca4bac9bd654bd2ba83c35
|
||||
msgid "`GCP Editor Pro <https://github.com/uav4geo/GCPEditorPro>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:48
|
||||
# 397f2777c59948cc8c50fe7aaee405e1
|
||||
msgid "POSM GCPi"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:50
|
||||
# 927593a77dc84e74b137c4d439df6825
|
||||
msgid "The POSM GCPi is loaded by default on WebODM. An example is available at `the WebODM Demo <http://demo.webodm.org/plugins/posm-gcpi/>`_. To use this with known ground control XYZ values, one would do the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:52
|
||||
# b9a43cb0966f427fae9039e6aa420d36
|
||||
msgid "Create a GCP list that only includes gcp name (this is the label that will be seen in the GCP interface), x, y, and z, with a header with a proj4 string of your GCPs (make sure they are in a planar coordinate system, such as UTM. It should look something like this:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:63
|
||||
# c193a1ce8f7a4da2b796010be7fc9521
|
||||
msgid "Then one can load this GCP list into the interface, load the images, and place each of the GCPs in the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:67
|
||||
# ece94c1e7c6c44698893e57cf6c10c92
|
||||
msgid "GCP Editor Pro"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:69
|
||||
# 31a2f2c5d1614505b9b11f063ed8f8af
|
||||
msgid "This app needs to be installed separately or can be loaded as a WebODM plugin from `https://github.com/uav4geo/GCPEditorPro <https://github.com/uav4geo/GCPEditorPro>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:71
|
||||
# 400a7b772b064992b58e256c4a86d802
|
||||
msgid "Create a CSV file that includes the gcp name, northing, easting and elevation."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:80
|
||||
# e3be97e2b1d442f99df0adde4e1752cb
|
||||
msgid "Then import the CSV from the main screen and type ``+proj=utm +zone=37 +south +ellps=WGS84 +datum=WGS84 +units=m +no_defs`` in the ``EPSG/PROJ`` box."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:82
|
||||
# e90ba38338ef409792e454d071bbcc16
|
||||
msgid "The following screen will display a map from where to select the GCPs to tag and import the respective images."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../gcp.rst:85
|
||||
# 23911fa0503e4bb58ddc99f41c10b797
|
||||
msgid "`Help edit these docs! <https://github.com/OpenDroneMap/docs/blob/publish/source/tutorials.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-21 17:01-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: ../../../index.rst:8
|
||||
# fa2f220d4f704404a75d0d9dd55f72b8
|
||||
msgid "Welcome to OpenDroneMap's documentation"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../index.rst:43
|
||||
# 2b86dd77c9ca4fdbb3e5c3a362287930
|
||||
msgid "`Help edit these docs! <https://github.com/OpenDroneMap/docs/blob/publish/source/index.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,737 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-21 17:01-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: ../../../installation.rst:4
|
||||
# ca7f5bc2eabd49cc96009728062ea54d
|
||||
msgid "Installation and Getting Started"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:6
|
||||
# 1ed7d87f513c4ec5b9a5279266a45b6d
|
||||
msgid "This section is excerpted and modified with permission from `OpenDroneMap: The Missing Guide <https://odmbook.com>`_, by Piero Toffanin."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:8
|
||||
# e31183e0021840e8af87079d21401d5a
|
||||
msgid "Until recently OpenDroneMap was the term used to refer to a single command line application (what is now known as the ODM project). With the recent development of a web interface, an API and other tools, OpenDroneMap has become an ecosystem of various applications to process, analyze and display aerial data. This ecosystem is made of several components:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:14
|
||||
# 3c4147a6684940ad928eed8ab8fb8e33
|
||||
msgid "**ODM** is the processing engine, which can be used from the command line. It takes images as input and produces a variety of outputs, including point clouds, 3D models and orthophotos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:20
|
||||
# 2905a2f97f9b41d496b9f5715a0c7a5f
|
||||
msgid "**NodeODM** is a light-weight API built on top of ODM. It allows users and applications to access the functions of ODM over a computer network"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:26
|
||||
# eedbd7ab806e4960bd0bbbefea18ece3
|
||||
msgid "**WebODM** is a friendly user interface that includes a map viewer, a 3D viewer, user logins, a plugin system and many other features that are expected of modern drone mapping platforms"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:32
|
||||
# 0037799dfae54302a1ee5dcf53fb8717
|
||||
msgid "**CloudODM** is a small command line client to communicate with ODM via the NodeODM API"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:38
|
||||
# 5f7f36d13cbc4bab82813568eb13063c
|
||||
msgid "**PyODM** is a Python SDK for creating tasks via the NodeODM API. We cover it in more detail in the “Automated Processing With Python” chapter"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:44
|
||||
# 79fe7f6a04b244158a344f2ec45a80ad
|
||||
msgid "**ClusterODM** is a load balancer for connecting together multiple NodeODM instances"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:46
|
||||
# 3d4380c923f24a6c8c47776462ef6b43
|
||||
msgid "ODM, NodeODM and WebODM are available on all major platforms (Windows, macOS and Linux) via a program called docker, which is required to run the software. Docker offers a way to run “containers”. Containers are packaged copies of an entire system, its software and its dependencies. These containers run within a virtual environment. On Linux this virtual environment is available from the operating system and is very efficient. On macOS and Windows the containers run within a VM, so there’s a bit of a overhead. but it’s still very suitable for running the software. Once installed users do not have to worry much about docker, as it operates (almost) transparently."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:48
|
||||
# 159054486d614cbdbcf568d61e39da15
|
||||
msgid "Without docker it would not be possible to run ODM on Windows or macOS. On these platforms ODM cannot run natively. Future development efforts are being focused on leveraging the new Windows Subsystem for Linux (WSL) and the possibility to make a native port of all dependencies to macOS, which is going to make the installation much easier."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:50
|
||||
# 73af16f53c6b4b658517706a33eabf7f
|
||||
msgid "On Ubuntu Linux 16.04 it’s feasible to run all OpenDroneMap software natively. However, because there’s very little performance penalty for running docker on Linux and docker is straightforward to setup on this platform, we don’t recommend it. On Linux the advantages of containerization far outweigh a tiny performance penalty. With docker users also get easy one-step updates of the software, so that’s nice."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:54
|
||||
# 359d8630ea1647e097be5d4b34eb3ce4
|
||||
msgid "Hardware Recommendations"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:56
|
||||
# 18823c774c5e485591613ede3537aa91
|
||||
msgid "The bare minimum requirements for running the software are:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:59
|
||||
# b9269e30b47548fb80ef20abc05b37a9
|
||||
msgid "64bit CPU manufactured on or after 2010"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:60
|
||||
# 99dfccc50a45405a87d7c7f3b0fcc36f
|
||||
msgid "20 GB of disk space"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:61
|
||||
# bb85e75db8de49cea35978868ce535f0
|
||||
msgid "4 GB RAM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:63
|
||||
# 0ee5785cbbce46659999f9e1123c6632
|
||||
msgid "No more than 100-200 images can be processed with the above specifications (the software will run out of memory). Recommended requirements are:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:65
|
||||
# 42e9b361c9f94967851b2af0e477ca87
|
||||
msgid "Latest Generation CPU"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:66
|
||||
# 0ed901a7dc214066a572808e38fca5c1
|
||||
msgid "100 GB of disk space"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:67
|
||||
# 2fb4ca503be345c9aec64d6043e56e56
|
||||
msgid "16 GB RAM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:69
|
||||
# 60dc5f9c09c94797a3796e6d6ab429ea
|
||||
msgid "The above will allow for a few hundred images to be processed without too many issues. A CPU with more cores will allow for faster processing, while a graphics card (GPU) currently has no impact on performance. For processing more images, add more disk space and RAM linearly to the number of images you need to process."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:75
|
||||
# 0499c473d45e4600b8b286d034152a1e
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:77
|
||||
# 6c957eef0a0947d9af44c5fdaae64eee
|
||||
msgid "We recommend people use `docker <https://www.docker.com>`_ for running ODM, whether you are on Windows, macOS or Linux."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:80
|
||||
# a221646a87e54ffca00f4faa9d484d8c
|
||||
msgid "Windows"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:82
|
||||
# 58413e3cb9ee4fa98e8a905682b84cd6
|
||||
msgid "To run OpenDroneMap you need at least Windows 7. Previous versions of Windows are not supported."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:86
|
||||
#: ../../../installation.rst:238
|
||||
# 6e0d75c55ec64542aad5f8a07448f58a
|
||||
# e6caef46a77342c0bea685754f2e26ea
|
||||
msgid "Step 1. Check Virtualization Support"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:88
|
||||
# ee636e01fd9c4b95a10d784713c4df08
|
||||
msgid "Docker requires a feature from your CPU called virtualization, which allows it to run virtual machines (VMs). Make sure you have it enabled! Sometimes this is disabled. To check, on Windows 8 or higher you can open the **Task Manager** (press CTRL+SHIFT+ESC) and switch to the **Performance** tab."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:94
|
||||
# 54bfe40fdc294fe9b4ed0e950ea72b13
|
||||
msgid "*Virtualization should be enabled*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:96
|
||||
# c3d505056c244fc498d98f269adcc407
|
||||
msgid "On Windows 7 to see if you have virtualization enabled you can use the `Microsoft® Hardware-Assisted Virtualization Detection Tool <http:// www.microsoft.com/en-us/download/details.aspx?id=592>`_ instead."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:99
|
||||
# 1798b11c83d84130a9f81911fb0b1117
|
||||
msgid "If virtualization is disabled, you’ll need to enable it. The procedure unfortunately is a bit different for each computer model, so the best way to do this is to look up on a search engine “how to enable vtx for <type your computer model here>”. Often times it’s a matter of restarting the computer, immediately pressing F2 or F12 during startup, navigating the boot menu and changing the settings to enable virtualization (often called “VT-X”)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:105
|
||||
# d5409249d7cb4371aa9eb0e5bb869b8d
|
||||
msgid "*Common keys to press at computer startup to access the boot menu for various PC vendors*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:108
|
||||
#: ../../../installation.rst:257
|
||||
# a501c1bab3bf45e48bae750c27e1dd4d
|
||||
# b8293121ff6e49cd9863ec30d5fd14f4
|
||||
msgid "Step 2. Install Requirements"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:110
|
||||
# c982360ef2dd44fca54712ecadcbb06d
|
||||
msgid "First, you’ll need to install:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:112
|
||||
# fdb9892340e64cb1b9c159e559288230
|
||||
msgid "Git: https://git-scm.com/downloads"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:113
|
||||
# b5affd70afdb494285672c4e9e5aed9e
|
||||
msgid "Python (latest version 3): https://www.python.org/downloads/windows/"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:115
|
||||
# 6a02317e616249b7b479fd89d0305d6b
|
||||
msgid "For Python 3, make sure you check **Add Python 3.x to PATH** during the installation."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:121
|
||||
# 62bb7db9c48c4a8ca31df2aeee1b64e9
|
||||
msgid "*Don’t forget to add the Python executable to your PATH (so that you can run commands with it)*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:123
|
||||
# 4c2ae6a3e7c647308a1260de04df5d6a
|
||||
msgid "Then, only if you are on Windows 10 Home, Windows 8 (any version) or Windows 7 (any version), install:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:125
|
||||
# 1ba2e1a8b1934fc8876c0fe60068fb0a
|
||||
msgid "Docker Toolbox: https://github.com/docker/toolbox/releases/download/v18.09.3/DockerToolbox-18.09.3.exe"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:127
|
||||
# 8e2a6d327e614a99ad17905807f1963b
|
||||
msgid "If you are on Windows 10 Professional or a newer version, you should install instead:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:129
|
||||
# 45cba2a6ac5140e19d78bb8ab794eafc
|
||||
msgid "Docker for Windows: https://download.docker.com/win/stable/Docker%20for%20Windows%20Installer.exe"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:131
|
||||
# 3ff00b319b51474fb26ab6cf937bcfe1
|
||||
msgid "Please do **NOT** install both docker programs. They are different and will create a mess if they are both installed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:133
|
||||
# 3ae6dab12627446c96bac3dcf45fd4bc
|
||||
msgid "After installing docker, launch it from the Desktop icon that is created from the installation (**Docker Quickstart** in the case of Docker Toolbox, **Docker for Windows** for Docker for Windows). This is important, do not skip this step. If there are errors, follow the prompts on screen to fix them."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:136
|
||||
#: ../../../installation.rst:299
|
||||
# e899fe5d4e634b3babcac69c7d85307f
|
||||
# 01b0ef2d25174ffba76ece0ea41b0473
|
||||
msgid "Step 3. Check Memory and CPU Allocation"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:138
|
||||
# 8c9d7577ecb14b98a69ba480b20356e3
|
||||
msgid "Docker on Windows works by running a VM in the background (think of a VM as a “computer emulator”). This VM has a certain amount of memory allocated and WebODM can only use as much memory as it’s allocated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:140
|
||||
# a8030e1a9fd44ef6a87dc80a907dd405
|
||||
msgid "If you installed Docker Toolbox (see below if you installed Docker for Windows instead):"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:142
|
||||
# 9811cefad7c349479cf16dbd9172d2f0
|
||||
msgid "Open the **VirtualBox Manager** application"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:143
|
||||
# 0ac38ae9bc6c4815989efc5fefe16dc9
|
||||
msgid "Right click the **default** VM and press **Close (ACPI Shutdown)** to stop the machine"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:144
|
||||
# 8aa1268debcd489daffdc3abbf805df9
|
||||
msgid "Right click the **default** VM and press **Settings...**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:145
|
||||
# 5923a15e0b664b6fa2577388188691c3
|
||||
msgid "Move the **Base Memory** slider from the **System** paneland allocate 60-70% of all available memory, optionally adding 50% of the available processors from the **Processor** tab also"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:151
|
||||
# 4f60c64419f8484da38deacc6254255b
|
||||
msgid "*VirtualBox default VM settings*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:153
|
||||
# ac4a561c3245431a9e80eb44751786d0
|
||||
msgid "Then press **OK**, right click the **default** VM and press **Start**."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:155
|
||||
# 3d9f78a7a16145c99ec002738c1a5bdc
|
||||
msgid "If you installed Docker for Windows instead:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:157
|
||||
# 40585ef1df7344fa8c4888a2e425a581
|
||||
msgid "Look in the system tray and right click the “white whale” icon."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:158
|
||||
# 42f607a04c8e41bc996c62680d11f4fc
|
||||
msgid "From the menu, press **Settings...**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:159
|
||||
# 6f2f4e6960b74493aecfeaad483bf58a
|
||||
msgid "From the panel, click **Advanced** and use the sliders to allocate 60-70% of available memory and use half of all available CPUs."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:160
|
||||
# b513fa1aee18473d889250226efd6dd4
|
||||
msgid "Press **Apply**."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:166
|
||||
# 2c48a0140d4c4953862e354aea188136
|
||||
msgid "*Step 1 Docker icon*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:172
|
||||
# c993ad5adff34fedb4f46e33ccfb649f
|
||||
msgid "*Step 3 & 4 Docker settings*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:175
|
||||
# 3a089a31f50e421f82466a065623350e
|
||||
msgid "Step 4. Download WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:177
|
||||
# 2a32abb9131448199cf601d091dd07e2
|
||||
msgid "Open the **Git Gui** program that comes installed with Git. From there:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:179
|
||||
# 375c2c96f1034b36b780d6e6c043ab6d
|
||||
msgid "When Git Gui opens, click 'Clone Existing Repository' option"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:180
|
||||
# 0b2e3b5a546c45c3a5d5a48dd4a1ac1e
|
||||
msgid "In **Source Location** type: https://github.com/OpenDroneMap/WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:181
|
||||
# fc8376d885d34eef9da5c7a852c3e921
|
||||
msgid "In **Target Directory** click browse and navigate to a folder of your choosing (create one if necessary)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:182
|
||||
# c6cb98301024474ea30cea6f73aa684d
|
||||
msgid "Press **Clone**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:188
|
||||
# 02e80960b8a7401985359b37d2fbab80
|
||||
msgid "*Git Gui*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:190
|
||||
# f3c4770173dd40aa89181dc24544dedf
|
||||
msgid "If the download succeeded, you should now see this window:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:196
|
||||
# 88351c8606484da9b20a8548138209e1
|
||||
msgid "*Git Gui after successful download (clone)*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:198
|
||||
# 227a6f8c77a54c07b227c951f6dcfecb
|
||||
msgid "Go to the **Repository** menu, then click **Create Desktop Icon**. This will allow you to come back to this application easily in the future."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:201
|
||||
# e658938ab82c4d41a016add0e3d602e9
|
||||
msgid "Step 4. Launch WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:203
|
||||
# b6356f518c1546e0a1594d9b3fe504f9
|
||||
msgid "From Git Gui, go to the **Repository** menu, then click **Git Bash**. From the command line terminal type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:209
|
||||
# b767c438fd79457e9d994062bbe1f62b
|
||||
msgid "Several components will download to your machine at this point, including WebODM, NodeODM and ODM. After the download you should be greeted by the following screen:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:215
|
||||
# 6a3a170a88af4dc9a7cac3fc4558fb68
|
||||
msgid "*Console output after starting WebODM for the first time*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:217
|
||||
# 4cfaceb9d320457ca7f89347856e3c2b
|
||||
msgid "If you are using Docker for Windows, open a web browser to http://localhost:8000"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:218
|
||||
# d0358e745d3846d09636284486fe26b2
|
||||
msgid "If you are using Docker Toolbox, find the IP address to connect to by typing:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:224
|
||||
# 8b51e7ea4f3e48d19584552449c5fdf0
|
||||
msgid "You should get a result like the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:230
|
||||
# 60b2163a2ca944d5b561bf41f24f11fa
|
||||
msgid "Then connect to http://192.168.1.100:8000 (replacing the IP address with the proper one)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:233
|
||||
# 442b43b52a3b454fbefb7e9437c9fb9a
|
||||
msgid "macOS"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:235
|
||||
# 97b76743b16e4d02a8d4a35a448cf42d
|
||||
msgid "Most modern (post 2010) Mac computers running macOS Sierra 10.12 or higher can run OpenDroneMap using docker, as long as hardware virtualization is supported (see below)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:240
|
||||
# b8cfb91406bd47d79f56768fc001e166
|
||||
msgid "Open a Terminal window and type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:246
|
||||
# b88a2d67ee834aa9baeb0655aa62a8df
|
||||
msgid "You will get a response similar to the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:252
|
||||
# 628d4c3aa2e44036b0deb1876d86b3f1
|
||||
msgid "If the result is *kern.hv_support: 1*, then your Mac is supported! Continue with Step 2."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:254
|
||||
# 2aa61f249135450e939d8080508e5746
|
||||
msgid "If the result is *kern.hv_support: 0*, unfortunately it means your Mac is too old to run OpenDroneMap. :("
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:259
|
||||
# 0c78f31ed3f846f4ba1761936eb4721a
|
||||
msgid "There are only two programs to install:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:261
|
||||
# e90623cdd26245dd91b46c7f3b72ccf3
|
||||
msgid "Docker: https://download.docker.com/mac/stable/Docker.dmg"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:262
|
||||
# fe8e0d7f80c24676abb9140e1090b6f4
|
||||
msgid "Git: https://sourceforge.net/projects/git-osx-installer/files/"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:264
|
||||
# a30ce5e119a846d0937509eabb900991
|
||||
msgid "After installing docker you should find an icon that looks like a whale in the task bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:270
|
||||
# 10d6273d82a04f1587c2d5fb20b2ef7f
|
||||
msgid "*Docker app running*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:272
|
||||
# ac8be6bc43224ebdaa909843db7ce97b
|
||||
msgid "You can verify that docker is running properly by opening the **Terminal** app and typing:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:278
|
||||
# 7f874c9eae5c4c67ab48ab48b4c85f56
|
||||
msgid "Which should return"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:284
|
||||
# 202a8d7848a84897bec59fc30d76ff96
|
||||
msgid "To verify that git is installed, simply type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:290
|
||||
# 727a35e6746443e38a4bb1a2530226f5
|
||||
msgid "Which should return something similar to the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:296
|
||||
# 7ee7ce0fe3cf40d28edb2a88589aafc6
|
||||
msgid "If you get a “bash: git: command not found”, try to restart your **Terminal** app and double-check for any errors during the install process."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:301
|
||||
# c969a4655a6e41c78571f4f05006d199
|
||||
msgid "Docker on macOS works by running a VM in the background (think of it as a “computer emulator”). This VM has a certain amount of memory allocated and WebODM can only use as much memory as it’s allocated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:303
|
||||
# e89322d22add432b8d00ef0da9910a6c
|
||||
msgid "Right click the whale icon from the task bar and click **Preferences**..."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:304
|
||||
# 73457306344148c0bc0c6382936ef870
|
||||
msgid "Select the **Advanced** tab"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:305
|
||||
# 6791fc129e16413983be624d46091da7
|
||||
msgid "Adjust the CPUs slider to use half of all available CPUs and the memory to use 60-70% of all available memory"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:306
|
||||
# 2fad355dfb504197bb70aded8fa643ec
|
||||
msgid "Press **Apply & Restart**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:312
|
||||
# 339e99e54264491a83c530f1ed107050
|
||||
msgid "*Docker advanced settings*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:315
|
||||
# a55d3812154e4abaadd608dfd4dfac08
|
||||
msgid "Step 4. Download and Launch WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:317
|
||||
# 0d5f531d78ac474db92ecc60012e4521
|
||||
msgid "From a **Terminal** type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:325
|
||||
#: ../../../installation.rst:426
|
||||
# 20229f5dd3ae4bd381cf81c65c83c44e
|
||||
# 223a8ca53398448398153f94bc81075a
|
||||
msgid "Then open a web browser to http://localhost:8000."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:328
|
||||
# f6c373465d684dcebfbe6fe0633c4138
|
||||
msgid "Linux"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:330
|
||||
# 0e56e6e0eea343ffbf70bde692908cbe
|
||||
msgid "OpenDroneMap can run on any Linux distribution that supports docker. According to `docker’s documentation website <https://docs.docker.com/install/>`_ the officially supported distributions are CentOS, Debian, Ubuntu and Fedora, with static binaries available for others. If you have to pick a distribution solely for running OpenDroneMap, Ubuntu is the recommended way to go."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:333
|
||||
# 7c7a0719bfe142648c378c8abd3317c2
|
||||
msgid "Step 1. Install Requirements"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:335
|
||||
# 83171f74e0364d5980164438faf1521c
|
||||
msgid "There are four programs that need to be installed:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:337
|
||||
# 7d44a185ed8b46abbda9303fb286486f
|
||||
msgid "Docker"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:338
|
||||
# f0ce43b8981d43c4bbfe1379c44c9321
|
||||
msgid "Git"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:339
|
||||
# 85d3b272b1024b99a987709a8a34ba3a
|
||||
msgid "Python (2 or 3)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:340
|
||||
# a426ce10e416419ab1f4ddd2904af232
|
||||
msgid "Pip"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:342
|
||||
# 29d1fde6e7644164be8c8eefdf0b7129
|
||||
msgid "We cannot possibly cover the installation process for every Linux distribution out there, so we’ll limit the instructions to those that are distributions officially supported by docker. In all cases it’s just a matter of opening a terminal prompt and typing a few commands."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:345
|
||||
# 93f7ea63f0484dbcb52d9ac50eb6fb01
|
||||
msgid "Install on Ubuntu / Debian"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:347
|
||||
#: ../../../installation.rst:359
|
||||
#: ../../../installation.rst:370
|
||||
#: ../../../installation.rst:381
|
||||
# fa55e97f3d5c459786ad246d4d44b8da
|
||||
# 0fe1276569a04b86a3e82a20598da5ee
|
||||
# 84aa59c42f794da1865fd8088086ce42
|
||||
# 16195dff5bf14d5bab2b2b0a69103c31
|
||||
msgid "Commands to type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:357
|
||||
# bc2e9dcb5f8140958fc44d216ff18eb5
|
||||
msgid "Install on CentOS / RHEL"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:368
|
||||
# 9511489f5fbb43a6a4114e5997beb20c
|
||||
msgid "Install on Fedora"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:379
|
||||
# 46bbf3597fbe45d09b2975ada9ad0b1f
|
||||
msgid "Install on Arch"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:388
|
||||
# ef4b2e7dc3494eb09c3ce49495829580
|
||||
msgid "Step 2. Check Additional Requirements"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:390
|
||||
# 84f96b987b3740c790eeeaa996c576fa
|
||||
msgid "In addition to the three programs above, the dockercompose script is also needed. Sometimes it’s already installed with docker, but sometimes it isn’t. To verify if it’s installed try to type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:396
|
||||
# 0b00ac1f20674870b69a3d1f092d675a
|
||||
msgid "You should see somethings similar to the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:402
|
||||
# 284cca281f614c648f919e885686fdb3
|
||||
msgid "If instead you get something similar to the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:408
|
||||
# 983d0e6356a74275bd044ade12af08b9
|
||||
msgid "you can install it by using pip:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:416
|
||||
# 5842e50886b64cc4be4e08cec0121061
|
||||
msgid "Step 3. Download and Launch WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:418
|
||||
# 29abff25121345dea6867519777717e3
|
||||
msgid "From a terminal type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:429
|
||||
# 57309bc02a884a288ae73c44e72ed08c
|
||||
msgid "Basic Commands and Troubleshooting"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:431
|
||||
# eb054dc2ff2e45869db94dfb3ad75aab
|
||||
msgid "The cool thing about using docker is that 99% of the tasks you’ll ever need to perform while using WebODM can be done via the ./webodm.sh script. You have already encountered one of them:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:437
|
||||
# d2bcc76bb7214209a6f4ee623e96d412
|
||||
msgid "which takes care of starting WebODM and setting up a default processing node (node-odm-1). If you want to stop WebODM, you can already guess what the command is:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:443
|
||||
# 3698ff42eb674c89b2d92629aba1ceac
|
||||
msgid "There are several other commands you can use, along with different flags. Flags are parameters passed to the ./webodm.sh command and are typically prefixed with “–”. The **port** flag for example instructs WebODM to use a different network port:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:449
|
||||
# 959bbbb701f648aa9e3711d89f36f123
|
||||
msgid "Other useful commands are listed below:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:468
|
||||
# 3c132782ccc54888bb8acf6806f4dbbf
|
||||
msgid "`The community forum <https://community.opendronemap.org>`_ is a great place to ask for help if you get stuck during any of the installation steps and for general questions on using the ./webodm.sh script."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:471
|
||||
# fdbc2929c47444bc8817faac19077cc1
|
||||
msgid "Hello, WebODM!"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:473
|
||||
# 7ee17336350e4347afaa9f26185d0960
|
||||
msgid "After running ./webodm.sh start and opening WebODM in the browser, you will be greeted with a welcome message and will be asked to create the first user. Take some time to familiarize yourself with the web interface and explore its various menus."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:479
|
||||
# cc069aa0bca7429eae5ab21d4666909f
|
||||
msgid "*WebODM Dashboard*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:481
|
||||
# 64e37b09ab6641718bde87e5e05b6c56
|
||||
msgid "Notice that under the **Processing Nodes** menu there’s a \"node-odm-1\" node already configured for you to use. This is a NodeODM node and has been created automatically by WebODM. This node is running on the same machine as WebODM."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:483
|
||||
# b450d1d7e6344be38bc3e77f2955948e
|
||||
msgid "If you’ve made it this far, congratulations! Now it’s time to start processing some data."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:490
|
||||
# 83d7a443ece94164aa76430eaefbd970
|
||||
msgid "Running on more than one machine"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:492
|
||||
# 0c2d75f28a854d92a9fe8c5c4c28a9e9
|
||||
msgid "**Optionally:** If you have another computer, you can repeat the installation process (install docker, git, python, etc.) and launch a new NodeODM node by typing from a Terminal/Git Bash window:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:498
|
||||
# 4694bf64a88c48d7aad13c6bb1a1b316
|
||||
msgid "The above command asks docker to launch a new container using the opendronemap/nodeodm image from Docker Hub (the latest version of NodeODM), using port 3000, setting a maximum number of concurrent tasks to 1 and to protect the node from unauthorized access using the password \"secret\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:500
|
||||
# f76fc4c596a14f9b82f90ddca6b06cca
|
||||
msgid "From WebODM you can then press the **Add New** button under **Processing Nodes**. For the **hostname/IP** field type the IP of the second computer. For the **port** field type “3000”. For the **token** field type “secret”. You can also add an optional **label** for your node, such as “second computer”. Then press **Save**."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:502
|
||||
# 964b17d1817a4c7bbf72dd1ab2de029f
|
||||
msgid "If everything went well, you should now have two processing nodes! You will be able to process multiple tasks in parallel using two different machines."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../installation.rst:504
|
||||
# f77613f718494ac791af608ceafe2657
|
||||
msgid "`Help edit these docs! <https://github.com/OpenDroneMap/docs/blob/publish/source/installation.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,233 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-21 17:01-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: ../../../large.rst:4
|
||||
# 5ea5942cc4604baea3dc66a4ee841282
|
||||
msgid "Splitting Large Datasets"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:6
|
||||
# 09b5af17439740d2b8a18993e6709da6
|
||||
msgid "Starting with ODM version ``0.6.0`` you can split up very large datasets into manageable chunks (called submodels), running the pipeline on each chunk, and then producing merged DEMs, orthophotos and point clouds. The process is referred to as \"split-merge\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:8
|
||||
# 0c58eb496d8d456ca011011549f430a8
|
||||
msgid "Why might you use the split-merge pipeline? If you have a very large number of images in your dataset, split-merge will help make the processing more manageable on a large machine (it will require less memory). If you have many machines all connected to the same network you can also process the submodels in parallel, thus allowing for horizontal scaling and processing thousands of images more quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:10
|
||||
# d3a6bf47796e4775bfb53066d0d51dce
|
||||
msgid "Split-merge works in WebODM out of the box as long as the processing nodes support split-merge, by enabling the ``--split`` option when creating a new task."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:13
|
||||
# 7c1cb609f5c74801ba89894fb5974978
|
||||
msgid "Calibrate images"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:15
|
||||
# a5852d851b3c4557a860c07a9a876368
|
||||
msgid "Image calibration is recommended (but not required) for large datasets because error propagation due to image distortion could cause a bowl effect on the models. Calibration instructions can be found at `Calibrate Images <tutorials.html#calibrating-the-camera>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:21
|
||||
# bb110a174c5f40ec9d3517e5eabbd887
|
||||
msgid "Bowling effect on point cloud over 13,000+ image dataset collected by World Bank Tanzania over the flood prone Msimbasi Basin, Dar es Salaam, Tanzania."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:24
|
||||
# 0967d468c7144fc5bd2132400d045215
|
||||
msgid "Local Split-Merge"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:26
|
||||
# 2e2ad9be96fa496bb5ab7db7b677f5df
|
||||
msgid "Splitting a dataset into more manageable submodels and sequentially processing all submodels on the same machine is easy! Just use ``--split`` and ``--split-overlap`` to decide the the average number of images per submodels and the overlap (in meters) between submodels respectively"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:32
|
||||
# 0aeee1b4863b45729bc6cbf63b6b1d84
|
||||
msgid "If you already know how you want to split the dataset, you can provide that information and it will be used instead of the clustering algorithm."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:34
|
||||
# 175b97d3d6a44086be4f0cdabfb6fe95
|
||||
msgid "The grouping can be provided by adding a file named image_groups.txt in the main dataset folder. The file should have one line per image. Each line should have two words: first the name of the image and second the name of the group it belongs to. For example::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:42
|
||||
# 20c59dc7a68941e89e8369bd6026f2ff
|
||||
msgid "will create 3 submodels. Make sure to pass ``--split-overlap 0`` if you manually provide a ``image_groups.txt`` file."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:46
|
||||
# f821d7b1316a4f81830050135f38ec62
|
||||
msgid "Distributed Split-Merge"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:48
|
||||
# f170f960ba414793b7f657bb74d70937
|
||||
msgid "ODM can also automatically distribute the processing of each submodel to multiple machines via `NodeODM <https://github.com/OpenDroneMap/NodeODM>`_ nodes, orchestrated via `ClusterODM <https://github.com/OpenDroneMap/ClusterODM>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:55
|
||||
# 09a33b36dab54c42a8ce360deacaf649
|
||||
msgid "Getting Started with Distributed Split-Merge"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:57
|
||||
# af83a83165d8401396aab49b8744a62b
|
||||
msgid "The first step is start ClusterODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:63
|
||||
# 6d4217467bf544e9a7ad1ac56e9f9973
|
||||
msgid "Then on each machine you want to use for processing, launch a NodeODM instance via"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:69
|
||||
# f7f5d656ce9f46d89eaa1769c27ba6e5
|
||||
msgid "Connect via telnet to ClusterODM and add the IP addresses/port of the machines running NodeODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:84
|
||||
# b6440814204a44fd9b9cbde1ff322cc3
|
||||
msgid "Make sure you are running version ``1.5.1`` or higher of the NodeODM API."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:86
|
||||
# 42d5b57f70b54515892481ba4875365b
|
||||
msgid "At this point, simply use the ``--sm-cluster`` option to enable distributed split-merge"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:93
|
||||
# 1ff052ee47864108abd13c2ca2b6eeef
|
||||
msgid "Understanding the Cluster"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:95
|
||||
# 18e376a78edf468088b5efbd939c0bbf
|
||||
msgid "When connected via telnet, it is possible to interrogate what is happening on the cluster. For example, we can use the command HELP to find out available commands"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:118
|
||||
# 1494dbd111a64a7e9075a9c20a0c12d9
|
||||
msgid "If, for example, the NodeODM instance wasn't active when ClusterODM started, we might list nodes and see something as follows"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:125
|
||||
# 20e68e67542e4049b232b7635d88760b
|
||||
msgid "To address this, we can start up our local node (if not already started), and then perform a ``NODE UPDATE``"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:135
|
||||
# 33eecf83e3124b59a7d0c13af09e04a2
|
||||
msgid "Accessing the Logs"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:137
|
||||
# def6c238d7864b5382c8a0c925a3c6e3
|
||||
msgid "While a process is running, it is also possible to list the tasks, and view the task output"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:145
|
||||
# 2a15305d8ba94ce0bdb2d07174a39b0f
|
||||
msgid "Autoscaling ClusterODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:147
|
||||
# 9ec4019144e94b0eb0ab5f4325320568
|
||||
msgid "ClusterODM also includes the option to autoscale on multiple platforms, including, to date, Amazon and Digital Ocean. This allows users to reduce costs associated with always-on instances as well as being able to scale processing based on demand."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:149
|
||||
# 62b6f826c2c643e0901155b8e13ae32b
|
||||
msgid "To setup autoscaling you must:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:151
|
||||
# 1f57a583ee064aadaa3feee9c394eafc
|
||||
msgid "Have a functioning version of NodeJS installed and then install ClusterODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:159
|
||||
# 717a4e330335494bb0df832234fa0032
|
||||
msgid "Make sure docker-machine is installed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:160
|
||||
# 199f29aa6b7f4f409bb92e6c3cb5bf16
|
||||
msgid "Setup a S3-compatible bucket for storing results."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:161
|
||||
# 6326931fadb04511aeefe580135ad3a2
|
||||
msgid "Create a configuration file for `DigitalOcean <https://github.com/OpenDroneMap/ClusterODM/blob/master/docs/digitalocean.md>`_ or `Amazon Web Services <https://github.com/OpenDroneMap/ClusterODM/blob/master/docs/aws.md>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:163
|
||||
# 24f1bc1a5a1045b5a066cb88d855dac6
|
||||
msgid "You can then launch ClusterODM with"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:169
|
||||
# cfd356de2d654bf891a32218437a3674
|
||||
msgid "You should see something similar to following messages in the console"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:177
|
||||
# e70048dcf8f24f71bc79a7051c51a05f
|
||||
msgid "You should always have at least one static NodeODM node attached to ClusterODM, even if you plan to use the autoscaler for all processing. If you setup auto scaling, you can't have zero nodes and rely 100% on the autoscaler. You need to attach a NodeODM node to act as the \"reference node\" otherwise ClusterODM will not know how to handle certain requests (for the forwarding the UI, for validating options prior to spinning up an instance, etc.). For this purpose, you should add a \"dummy\" NodeODM node and lock it"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:187
|
||||
# 534c507b01064a47810c210e1bb41569
|
||||
msgid "This way all tasks will be automatically forwarded to the autoscaler."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:190
|
||||
# 69765d62d9bb44979d730a3aee0908c7
|
||||
msgid "Limitations"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:192
|
||||
# bf357933f5f442d2837b2682b0ad9bb2
|
||||
msgid "The 3D textured meshes are currently not being merged as part of the workflow (only point clouds, DEMs and orthophotos are)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:194
|
||||
# 8e1fa32d457445b489bc403442ae7fd5
|
||||
msgid "GCPs are fully supported, however, there needs to be at least 3 GCP points on each submodel for the georeferencing to take place. If a submodel has fewer than 3 GCPs, a combination of the remaining GCPs + EXIF data will be used instead (which is going to be less accurate). We recommend using the ``image_groups.txt`` file to accurately control the submodel split when using GCPs."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:197
|
||||
# 1597b856001e4334a4df3555c8416ee1
|
||||
msgid "Acknowledgments"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:198
|
||||
# ec973929d9d947be90f0859358cc398c
|
||||
msgid "Huge props to Pau and the folks at Mapillary for their amazing contributions to OpenDroneMap through their OpenSfM code, which is a key component of the split-merge pipeline. We look forward to further pushing the limits of OpenDroneMap and seeing how big a dataset we can process."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../large.rst:200
|
||||
# 87ebd0f900e74e17b1cdb97ea39eafe1
|
||||
msgid "`Help edit these docs! <https://github.com/OpenDroneMap/docs/blob/publish/source/large.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-21 17:01-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: ../../../multispectral.rst:2
|
||||
# 87c9cb4a7b2b478387fd990c81927150
|
||||
msgid "Multispectral Support"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../multispectral.rst:4
|
||||
# 067b863268c2477bb94a7b6aaebab68f
|
||||
msgid "Since version 0.9.9 ODM has basic support for radiometric normalization, which is able to generate reflectance orthophotos from multispectral cameras. Multispectral cameras capture multiple shots of the scene using different band sensors."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../multispectral.rst:7
|
||||
# b8dcb9bc7b7f4fffa0a8c9d75c0da9ca
|
||||
msgid "Hardware"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../multispectral.rst:9
|
||||
# 1c8ec56af3bc4fe5afdcb43f8b1fb149
|
||||
msgid "While we aim to support as many cameras as possible, multispectral support has been developed using the following cameras, so they will work better:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../multispectral.rst:11
|
||||
# 2b3e96533ded49da9ef461dc8f54d720
|
||||
msgid "`MicaSense RedEdge-MX and Altum <https://www.micasense.com/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../multispectral.rst:12
|
||||
# ce4bd2fe479f45c9a851203698d34a39
|
||||
msgid "`Sentera 6X <https://sentera.com/6x/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../multispectral.rst:14
|
||||
# 3acaad56c8ed48aba2f6bbb7e7963587
|
||||
msgid "Other cameras might also work. You can help us expand this list by `sharing datasets <https://community.opendronemap.org/c/datasets/10>`_ captured with other cameras."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../multispectral.rst:17
|
||||
# 95652e4bd93440a098146431e52dbfbd
|
||||
msgid "Usage"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../multispectral.rst:19
|
||||
# c7362ff9d6ae4d6bbfc4b41bcbd7d0b4
|
||||
msgid "Process all the images from all bands at once (do not separate the bands into multiple folders) and pass the `--radiometric-calibration` parameter to enable radiometric normalization. If the images are part of a multi-camera setup, the resulting orthophoto will have N bands, one for each camera (+ alpha)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../multispectral.rst:25
|
||||
# a36abb316e2d4fbfa64247b874763e70
|
||||
msgid "`Help edit these docs! <https://github.com/OpenDroneMap/docs/blob/publish/source/multispectral.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,123 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-21 17:01-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: ../../../outputs.rst:2
|
||||
# 0363274eec9a4b9c82318f91f7138fa8
|
||||
msgid "OpenDroneMap Outputs"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../outputs.rst:4
|
||||
# 4d0105590a224be8b3366a34b3ca7dcf
|
||||
msgid "Listed below are some of the useful outputs ODM produces."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../outputs.rst:7
|
||||
# e4c5e56bafa147fab888836f5d3ee12d
|
||||
msgid "Point Cloud"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../outputs.rst:9
|
||||
# e5a47a5f7e9048b9a271385ca20dff58
|
||||
msgid "``odm_georeferencing/odm_georeferenced_model.ply/laz/csv`` -- The georeferenced point cloud in different file formats"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../outputs.rst:15
|
||||
# c255fdbb5e244cc59984eeb5c1411b57
|
||||
msgid "*Point cloud over State University Zanzibar, courtesy of* `Khadija Abdullah Ali <https://www.linkedin.com/in/khadija-abdulla-ali-56b4044a/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../outputs.rst:19
|
||||
# ef280b4664614efb95892f9f3d86a3d0
|
||||
msgid "3D Textured Model"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../outputs.rst:21
|
||||
# 83eaf395dd13452abe2885162d0d16e6
|
||||
msgid "``odm_texturing/odm_textured_model.obj`` -- The textured surface mesh ``odm_texturing/odm_textured_model_geo.obj`` -- The georeferenced and textured surface mesh"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../outputs.rst:24
|
||||
# ac92cff17c904762b2fd054257cf64d5
|
||||
msgid "You can access the point cloud and textured meshes using MeshLab. Open MeshLab, and choose File:Import Mesh and choose your textured mesh from a location similar to the following: ``odm_texturing\\odm_textured_model.obj``"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../outputs.rst:30
|
||||
# f452c086297841c6b18804010bbf394d
|
||||
msgid "*Textured mesh courtesy of* `OpenDroneMap <https://twitter.com/opendronemap>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../outputs.rst:33
|
||||
# e7762f4764a944549f8fb90991214af0
|
||||
msgid "Orthophoto"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../outputs.rst:35
|
||||
# 55a73a43fc1e443e8f90f27c4562f1ca
|
||||
msgid "``odm_orthophoto/odm_orthphoto.png`` -- The orthophoto, but this is a simple png, which doesn't have any georeferencing information"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../outputs.rst:37
|
||||
# 8487c7b9409e4549bdf74776d7c552b0
|
||||
msgid "``odm_orthophoto/odm_orthphoto.tif`` -- GeoTIFF Orthophoto. You can use it in QGIS as a raster layer."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../outputs.rst:43
|
||||
# f96d614393b3411299358ed2ac8847bd
|
||||
msgid "*Orthophoto over State University Zanzibar, courtesy of* `Khadija Abdullah Ali <https://www.linkedin.com/in/khadija-abdulla-ali-56b4044a/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../outputs.rst:46
|
||||
# 97a9f77304ae4ce487ea62415fbe0e5a
|
||||
msgid "DTM/DSM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../outputs.rst:48
|
||||
# cc432c908f294d6a87d3c47274b32de8
|
||||
msgid "DTM/DSM will only be created if the ``--dtm`` or ``--dsm`` options are used. See `tutorial on elevation models <https://docs.opendronemap.org/tutorials.html#creating-digital-elevation-models>`_ for more options in creating."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../outputs.rst:50
|
||||
# 3d6a730458b14794bf7454b4f6e119e4
|
||||
msgid "Data will be stored in:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../outputs.rst:52
|
||||
# abad74d908c04802b1be22686908379e
|
||||
msgid "``odm_dem/dtm.tif``"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../outputs.rst:53
|
||||
# d5483e2a7881435c91539b04f55ce113
|
||||
msgid "``odm_dem/dsm.tif``"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../outputs.rst:59
|
||||
# 879bdeaa3d8a43519e2552ae4830a3e0
|
||||
msgid "*Digital surface model over State University Zanzibar, courtesy of* `Khadija Abdullah Ali <https://www.linkedin.com/in/khadija-abdulla-ali-56b4044a/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../outputs.rst:62
|
||||
# fe6b51da6c9f47a39b7437e0cdfcee35
|
||||
msgid "List of all outputs"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../outputs.rst:109
|
||||
# 664796b76ddc4919ad9ea2c81918aa6c
|
||||
msgid "`Help edit these docs! <https://github.com/OpenDroneMap/docs/blob/publish/source/outputs.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-21 17:01-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: ../../../requesting-features.rst:2
|
||||
# d940e31fefb34ecbb8d9be39288cd73c
|
||||
msgid "How To Request Features"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../requesting-features.rst:4
|
||||
# 95118bd8b9c649a598c5fe8bff033698
|
||||
msgid "All software needs user feedback and feature requests, to grow and maintain alignment with the needs of its users."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../requesting-features.rst:7
|
||||
# 696e503999524f108ec4e69ad5c38b9a
|
||||
msgid "OpenDroneMap is FOSS software. Free and open source (FOSS) projects are interesting from the inside and outside: from the outside, successful ones feel like they should be able to do anything, and it’s hard to know what a reasonable request is. From the inside of a project, they can feel very resource constrained: largely by time, money, and opportunity overload."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../requesting-features.rst:13
|
||||
# 1b8acc2a7a29463ca0df0b5f454bc0b7
|
||||
msgid "A feature request can be submitted as issues on the applicable Github repository (e.g., `WebODM <https://github.com/OpenDroneMap/WebODM/issues>`_ or `ODM <https://github.com/OpenDroneMap/ODM/issues>`_ or similar) or more simply as a discussion topic on `the community forum <https://community.opendronemap.org/>`_. Try to start by searching these sources to see if someone else has already brought it up. Sometimes a feature is already in the works, or has at least been discussed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../requesting-features.rst:19
|
||||
# 72a6e0d25ec84002b73a6810ffca914c
|
||||
msgid "And importantly, the trick is to listen: if someone within the project says: \"This is a big lift, we need MONEY or TIME or SOMEONE TO HELP CODE IT\" (or possibly a combination of the three) then there are two answers that work really well in response:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../requesting-features.rst:23
|
||||
# db0eaf87e7fa4f9f99538ed5dd6b2d66
|
||||
msgid "*Ok. I didn’t know it was a big feature request! I hope someone comes along with the necessary resources. As a community member, I would be happy to be an early user and tester!*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../requesting-features.rst:25
|
||||
# d83e0f882cf640539bbdfca6d431241d
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../requesting-features.rst:27
|
||||
# eeb066ea19ea47398930c8e7c724c5a4
|
||||
msgid "*Let’s figure out if we can put together the resources to get this done! Here’s what I can contribute toward it: …*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../requesting-features.rst:29
|
||||
# 22a7df06b14a4a30a09f34de5c834c28
|
||||
msgid "We are glad you are excited to see new features added to the project. Some new features need support, and some are easier to implement. We'll do our best to help you understand where your request falls, and we appreciate any support you can provide."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../requesting-features.rst:33
|
||||
# 1dc7be048a46499292c8313b44ebbb79
|
||||
msgid "`Help edit these docs! <https://github.com/OpenDroneMap/docs/blob/publish/source/requesting-features.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,93 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-21 17:01-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: ../../../resources.rst:2
|
||||
# fd0399e9f29e43ee85f633fc5a7d9854
|
||||
msgid "Additional References"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../resources.rst:5
|
||||
# d3ba9250ce4b482c89983e02f0bb4d9d
|
||||
msgid "For Users"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../resources.rst:7
|
||||
# 2c54ff8efcbb4cd4a1d4426a677a668a
|
||||
msgid "The following resources are a good place to start:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../resources.rst:9
|
||||
# 4d7432320ac74422a01020761eaf6f3a
|
||||
msgid "`README page for ODM <https://github.com/OpenDroneMap/OpenDroneMap>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../resources.rst:10
|
||||
# 3bcf9ff9b6e3408f875a614e65332f9b
|
||||
msgid "`README page for WebODM <https://github.com/OpenDroneMap/WebODM>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../resources.rst:11
|
||||
# 52d2e948eece4d0d8fe87e3f17bff6dd
|
||||
msgid "`README page for NodeODM <https://github.com/OpenDroneMap/node-OpenDroneMap>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../resources.rst:12
|
||||
# 43b64684e93c41a08607bfd7318b8509
|
||||
msgid "`Ground Control Points Format Specification <https://github.com/mapillary/OpenSfM/blob/master/doc/source/gcp.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../resources.rst:13
|
||||
# b4bbfe51562c46d781908edf80c34abf
|
||||
msgid "`OpenDroneMap: The Missing Guide <https://odmbook.com/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../resources.rst:16
|
||||
# 60796eb1324b41d5b56f497960451872
|
||||
msgid "For Developers"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../resources.rst:18
|
||||
# 45473074a8b6436f9d842e2c9bb4ca87
|
||||
msgid "In addition to user resources, we recommend to also read the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../resources.rst:20
|
||||
# cd3029204fde4dd2b6ece3cfe1a2bd6b
|
||||
msgid "WebODM documentation: https://docs.webodm.org"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../resources.rst:21
|
||||
# c6fe70ba85564f3e82f609e7df9f8227
|
||||
msgid "NodeODM API specification: https://github.com/OpenDroneMap/NodeODM/blob/master/docs/index.adoc"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../resources.rst:22
|
||||
# b282ab45d280415982d512c91e6b6719
|
||||
msgid "Overview of the ODM pipeline: http://community.opendronemap.org/t/where-can-i-find-background-information-on-the-concepts-of-odm/665/2"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../resources.rst:23
|
||||
# edc948c7e2d2431e8b888a7b1a733965
|
||||
msgid "We keep a `section in our forum dedicated to research papers <http://community.opendronemap.org/c/ideas-proposals/research-papers>`_. This is a valuable place where to read more about state of the art research related to structure from motion, multi-view stereo, meshing, texturing, etc. which can be used to improve the software."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../resources.rst:26
|
||||
# 9653eddbec1b4561addbaa46fe051e06
|
||||
msgid "`Help edit these docs! <https://github.com/OpenDroneMap/docs/blob/publish/source/api.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,503 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-08-07 18:04-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: ../../../tutorials.rst:5
|
||||
# 154e27339a6d4d5ab135b254b41cff2e
|
||||
msgid "Tutorials"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:7
|
||||
# 39d60310918740b0a556e8c10dc56eba
|
||||
msgid "Below you will find instructions for some common use cases."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:11
|
||||
# b5fbaa44520f44cb9da623043f6ed848
|
||||
msgid "Creating High Quality Orthophotos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:17
|
||||
# 14bdaa6fa5b44666b70643faf4d90748
|
||||
msgid "Without any parameter tweaks, ODM chooses a good compromise between quality, speed and memory usage. If you want to get higher quality results, you need to tweak some parameters:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:19
|
||||
# bd6465ef1c014f89b19a45933fbc61cf
|
||||
msgid "``--orthophoto-resolution`` is the resolution of the orthophoto in cm/pixel. Decrease this value for a higher resolution result."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:20
|
||||
# 1aa11b4438b346ddbaa4a002e908e022
|
||||
msgid "``--ignore-gsd`` is a flag that instructs ODM to skip certain memory and speed optimizations that directly affect the orthophoto. Using this flag will increase runtime and memory usage, but may produce sharper results."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:21
|
||||
# 3502bb2d2f444fe496c8e6201f2de1e7
|
||||
msgid "``--texturing-nadir-weight`` should be increased to ``29-32`` in urban areas to reconstruct better edges of roofs. It should be decreased to ``0-6`` in grassy / flat areas."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:22
|
||||
# 11523879c49e48399e4a1103edb203d0
|
||||
msgid "``--texturing-data-term`` should be set to `area` in forest areas."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:23
|
||||
# 44565af981be4cbd9a67774ea5519b45
|
||||
msgid "``--mesh-size`` should be increased to ``300000-600000`` and ``--mesh-octree-depth`` should be increased to ``10-11`` in urban areas to recreate better buildings / roofs."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:27
|
||||
# a27a81fd6ffd486ca2f05fe69646b76a
|
||||
msgid "Calibrating the Camera"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:29
|
||||
# cf97b5ad2ba140f88bf384c02a30c250
|
||||
msgid "Camera calibration is a special challenge with commodity cameras. Temperature changes, vibrations, focus, and other factors can affect the derived parameters with substantial effects on resulting data. Automatic or self calibration is possible and desirable with drone flights, but depending on the flight pattern, automatic calibration may not remove all distortion from the resulting products. James and Robson (2014) in their paper `Mitigating systematic error in topographic models derived from UAV and ground‐based image networks <https://onlinelibrary.wiley.com/doi/full/10.1002/esp.3609>`_ address how to minimize the distortion from self-calibration."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:35
|
||||
# 40cb75662eba4e36b6c3efdd75431b71
|
||||
msgid "*Bowling effect on point cloud over 13,000+ image dataset collected by World Bank Tanzania over the flood prone Msimbasi Basin, Dar es Salaam, Tanzania.*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:37
|
||||
# 6ebe5d5afb3340bf90a2009a9111f821
|
||||
msgid "To mitigate this effect, there are a few options but the simplest are as follows: fly two patterns separated by 20°, and rather than having a nadir (straight down pointing) camera, use one that tilts forward by 5°."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:45
|
||||
# db74d99b40aa4952a60b2e4cf7bb1ef3
|
||||
msgid "As this approach to flying can be take longer than typical flights, a pilot or team can fly a small area using the above approach. OpenDroneMap will generate a calibration file called cameras.json that then can be imported to be used to calibrate another flight that is more efficiently flown."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:47
|
||||
# 526630b420ec44b0a0c13866269d2887
|
||||
msgid "Alternatively, the following experimental method can be applied: fly with much lower overlap, but two *crossgrid* flights (sometimes called crosshatch) separated by 20° with a 5° forward facing camera."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:49
|
||||
# 3ae511a32e6947d7ae085a4f1de2f7f7
|
||||
msgid "Crossgrid overlap percentages can be lower than parallel flights. To get good 3D results, you will require 68% overlap and sidelap for an equivalent 83% overlap and sidelap."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:50
|
||||
# 483b77a388c84386b94c19e0f2562522
|
||||
msgid "To get good 2D and 2.5D (digital elevation model) results, you will require 42% overlap and sidelap for an equivalent 70% overlap and sidelap."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:56
|
||||
# df776679c8cf4097b85b0da0e0f4411c
|
||||
msgid "Vertically separated flight lines also improve accuracy, but less so than a camera that is forward facing by 5°."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:62
|
||||
# b537c02fe3634f62bcff294e00d4d16b
|
||||
msgid "From James and Robson (2014), `CC BY 4.0 <https://creativecommons.org/licenses/by/4.0>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:66
|
||||
# f40b44f6f30d488ea908e57170e0acbd
|
||||
msgid "Creating Digital Elevation Models"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:68
|
||||
# b4867123759d4fa28ea755c3d52adee9
|
||||
msgid "By default ODM does not create DEMs. To create a digital terrain model, make sure to pass the ``--dtm`` flag. To create a digital surface model, be sure to pass the ``--dsm`` flag."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:74
|
||||
# 8670708d10e948c2a81962297f5f22f3
|
||||
msgid "For DTM generation, a Simple Morphological Filter (smrf) is used to classify points in ground vs. non-ground and only the ground points are used. The ``smrf`` filter can be controlled via several parameters:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:76
|
||||
# 1f352bbe0ddf4984bb5f8f8de3cdbbbe
|
||||
msgid "``--smrf-scalar`` scaling value. Increase this parameter for terrains with lots of height variation."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:77
|
||||
# 094fbe49d38d459e950d471083464abf
|
||||
msgid "``--smrf-slope`` slope parameter, which is a measure of \"slope tolerance\". Increase this parameter for terrains with lots of height variation. Should be set to something higher than 0.1 and not higher than 1.2."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:78
|
||||
# 364530ec6fa9450b92fabf65d6c9b6da
|
||||
msgid "``--smrf-threshold`` elevation threshold. Set this parameter to the minimum height (in meters) that you expect non-ground objects to be."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:79
|
||||
# a80686f0f5d94d7fb7a023db4473f853
|
||||
msgid "``--smrf-window`` window radius parameter (in meters) that corresponds to the size of the largest feature (building, trees, etc.) to be removed. Should be set to a value higher than 10."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:81
|
||||
# 5426c555e3ef4e409163e6ba60e9f257
|
||||
msgid "Changing these options can affect the result of DTMs significantly. The best source to read to understand how the parameters affect the output is to read the original paper `An improved simple morphological filter for the terrain classification of airborne LIDAR data <https://www.researchgate.net/publication/258333806_An_Improved_Simple_Morphological_Filter_for_the_Terrain_Classification_of_Airborne_LIDAR_Data>`_ (PDF freely available)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:83
|
||||
# d535fa2fd949447aad230dba6124d40d
|
||||
msgid "Overall the ``--smrf-threshold`` option has the biggest impact on results."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:85
|
||||
# 734e36487b4f4063b1c4e56b0f3463e8
|
||||
msgid "SMRF is good at avoiding Type I errors (small number of ground points mistakenly classified as non-ground) but only \"acceptable\" at avoiding Type II errors (large number non-ground points mistakenly classified as ground). This needs to be taken in consideration when generating DTMs that are meant to be used visually, since objects mistaken for ground look like artifacts in the final DTM."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:91
|
||||
# f1744b35184a4247811dc07a1c2b828e
|
||||
msgid "Two other important parameters affect DEM generation:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:93
|
||||
# 302822e5dd514203bf2f50f7457b9b5e
|
||||
msgid "``--dem-resolution`` which sets the output resolution of the DEM raster (cm/pixel)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:94
|
||||
# 292076c15137494e9172fa94da313132
|
||||
msgid "``--dem-gapfill-steps`` which determines the number of progressive DEM layers to use. For urban scenes increasing this value to `4-5` can help produce better interpolation results in the areas that are left empty by the SMRF filter."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:96
|
||||
# 87d49644e3374c07a2011d3a307742e2
|
||||
msgid "Example of how to generate a DTM::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:102
|
||||
# 50501074905a4fc8b08b24ba132de8c5
|
||||
msgid "Using Docker"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:104
|
||||
# 6e4131a5a3384ae285f37d221ae9810a
|
||||
msgid "Since many users employ docker to deploy OpenDroneMap, it can be useful to understand some basic commands in order to interrogate the docker instances when things go wrong, or we are curious about what is happening. Docker is a containerized environment intended, among other things, to make it easier to deploy software independent of the local environment. In this way, it is similar to virtual machines."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:106
|
||||
# 49b5ab7e8c044080bd1d0aee1d2f2826
|
||||
msgid "A few simple commands can make our docker experience much better."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:109
|
||||
# df53139cd5264dea8fceb65cdf4f63c5
|
||||
msgid "Listing Docker Machines"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:111
|
||||
# 3c3c8828b27e4b67b8d05aa146ec54ec
|
||||
msgid "We can start by listing available docker machines on the current machine we are running as follows:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:120
|
||||
# 537c71956706401fb8e3c3124d44b653
|
||||
msgid "If we want to see machines that may not be running but still exist, we can add the `-a` flag:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:133
|
||||
# 5e8cd571a3c9482f91a6c1a43fae75e5
|
||||
msgid "Accessing logs on the instance"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:135
|
||||
# bad3417f919e4a0f8f94fb1c105f24e1
|
||||
msgid "Using either the `CONTAINER ID` or the name, we can access any logs available on the machine as follows:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:141
|
||||
# b4fd6da1500a4e4fb5115c6406890e65
|
||||
msgid "This is likely to be unwieldy large, but we can use a pipe `|` character and other tools to extract just what we need from the logs. For example we can move through the log slowly using the `more` command:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:157
|
||||
# aa0b31cbf49b491fbd452fcf711a9d74
|
||||
msgid "Pressing `Enter` or `Space`, arrow keys or `Page Up` or `Page Down` keys will now help us navigate through the logs. The lower case letter `Q` will let us escape back to the command line."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:159
|
||||
# 1ba3bd1e726a4536b0f2cca5b938d9f1
|
||||
msgid "We can also extract just the end of the logs using the `tail` commmand as follows:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:170
|
||||
# 3be85244a688441ea866aa743ddcb394
|
||||
msgid "The value `-5` tells the tail command to give us just the last 5 lines of the logs."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:173
|
||||
# 596c3a847e2f453ea2b730c1a896cc90
|
||||
msgid "Command line access to instances"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:175
|
||||
# af607c2d3f3a4fb6858de895a7812e15
|
||||
msgid "Sometimes we need to go a little deeper in our exploration of the process for OpenDroneMap. For this, we can get direct command line access to the machines. For this, we can use `docker exec` to execute a `bash` command line shell in the machine of interest as follows:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:179
|
||||
# 1b301286378848d195d8de77aedbdf74
|
||||
msgid "::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:178
|
||||
# 02c5c5e416d3466dab0852f300cd9a09
|
||||
msgid "> docker exec -ti 2518817537ce bash root@2518817537ce:/code#"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:181
|
||||
# da298a4efd4b4c1b9d61db283059f8dc
|
||||
msgid "Now we are logged into our docker instance and can explore the machine."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:184
|
||||
# b46b370208e043909e244bbc723d11d3
|
||||
msgid "Cleaning up after Docker"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:186
|
||||
# 9d63a1f16cbb41d1b04f8779235aae72
|
||||
msgid "Docker has a lamentable use of space and by default does not clean up excess data and machines when processes are complete. This can be advantageous if we need to access a process that has since terminated, but carries the burden of using increasing amounts of storage over time. Maciej Łebkowski has an `excellent overview of how to manage excess disk usage in docker <https://lebkowski.name/docker-volumes/>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:190
|
||||
# f96d9ce9d05d4f8881cd2e6a73a6dfa8
|
||||
msgid "Using ODM from low-bandwidth location"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:193
|
||||
# a26912094ee74fe0b94e0d4e9bb63a68
|
||||
msgid "What is this and who is it for?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:195
|
||||
# 9c1aeead615c41d58afe5baaaa2e9365
|
||||
msgid "Via Ivan Gayton's: [repo](https://github.com/ivangayton/GDAL_scripts/)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:197
|
||||
# b1fedebae1c644d49867e82d82dd7d32
|
||||
msgid "`OpenDroneMap <https://www.opendronemap.org/>`__ can’t always be effectively set up locally—it takes a fairly powerful machine to process large datasets—so a cloud machine can sometimes be the answer for people in the field. However, bandwidth is a problem in many low-income settings. This constraint can’t be solved completely, but the following method does a reasonable job of reducing the bandwidth needed to process drone imagery datasets on the cloud from African locations."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:205
|
||||
# 27bb2ac3f43647178743b213b56d1e0a
|
||||
msgid "Here we present a tricky but workable process to create an OpenDroneMap cloud machine (*not* CloudODM, mind you, just a cloud-based instance of ODM that you run from the command line) and use it to remotely process large photo sets. It requires familiarity with Unix command line use, ssh, a Digital Ocean account (Amazon AWS would work as well, possibly with slight differences in the setup), and a moderate level of general computer literacy. If you aren’t fairly computer-savvy and willing to fuss with a slightly tricky setup, `CloudODM <https://www.opendronemap.org/cloudodm/>`__ is what you should be looking at."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:216
|
||||
# cab2d4e8c9364938a4af6c5257cb2055
|
||||
msgid "The whole process is mostly targeted at someone flying substantial missions in an African or similar location looking to process data ASAP while still in a field setting. Therefore it emphasizes a workflow intended to reduce bandwidth/data transfer, rather than just the simplest way of running ODM."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:223
|
||||
# d8d8597785b84f678cfaa8bcc310bfe2
|
||||
msgid "Steps"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:226
|
||||
# 323632131a7a475996e0f4157f28adf3
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:228
|
||||
# 92fc4a7110ec42388c4ab2def52c2977
|
||||
msgid "Create a Digital Ocean droplet with at least 4GB of RAM. That’ll cost about $20/month. Less than 4GB of RAM and the install will probably fail. When we actually run the ODM process we’ll resize it to a much larger—and more expensive—cloud machine, but between runs you can downsize it between runs to the second-cheapest droplet which costs only $10/month (the cheapest droplet, at $5/month, comes with such a small drive that you can’t downsize back to it)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:236
|
||||
# 548dc42ce8ee453f9a7d4b501e7f3522
|
||||
msgid "Should be an Ubuntu 16.04 instance to ensure dependency compatibility"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:238
|
||||
# 7f25f7675fe04c2d8a4e7f52011f99e1
|
||||
msgid "Create a user with sudo privileges. `Digital Ocean’s insanely good documentation <https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-16-04>`__ can help you figure this out. In our case we set up a user called ``odm``, so connecting to it is via the command ``ssh odm@xxx.xxx.xxx.xxx`` (where the x’s stand for the IPv4 address of your server). If you want to follow this example closely, *do* use the username ``odm``; then your install path will be ``/home/odm/ODM/`` and will match all of the examples in this document. -When you log into the server, it will offer you the option to upgrade to Ubuntu 18.04, a more recent version. Don’t. ODM native install doesn’t work smoothly on 18.04. Go ahead and execute ``sudo apt update`` and ``sudo apt upgrade`` to ensure your server isn’t dangerously without updates, but stay with Ubuntu 16.04."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:253
|
||||
# 8893bbe316534e44935a919da6029759
|
||||
msgid "Download and install ODM on it from the `ODM Github <https://github.com/OpenDroneMap/ODM>`__ (regular, not WebODM) with the following commands:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:263
|
||||
# ba7617c6598547498e17397d734a6dfe
|
||||
msgid "If you do this from the default home folder of your user (i.e. ``odm``) the path to the install will be ``/home/odm/ODM`` (abbreviated as ``~/ODM/``)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:266
|
||||
# 305d825d2b5d4c69aef06fcd95f711ea
|
||||
msgid "There are some environmental variables that need to be set. Open the ~/.bashrc file on your machine and add the following 3 lines at the end (From `the ODM github <https://github.com/OpenDroneMap/ODM>`__). The file can be opened with ``nano ~/.bashrc`` (or whatever text editor you use in lieu of nano). Be sure to replace ``/home/odm/`` with the correct path to the location where you extracted OpenDroneMap if you didn’t do everything exactly as in our example (for example if you used a different username in your server setup):"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:281
|
||||
# 15cee43639104a5da7ef02613ebdf3da
|
||||
msgid "Note that the ODM github readme contains a slight error, the install directory name will be ODM, not OpenDroneMap (you’ll see this if you compare the above instructions to the ones on the ODM GitHub)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:285
|
||||
# 9dc7c9d9047c45bea929642b5110b2c5
|
||||
msgid "In order to prevent a crash wherein the split-merge process fails to locate its own executable, we add the following lines to ``~/.bashrc`` (adjust paths if you’ve set things up differently from our example):"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:295
|
||||
# 10a2fdc7efb74df0acc55d38fe9514c6
|
||||
msgid "Now you’ll need a second cloud hard drive (a “Volume” in Digital Ocean jargon) big enough to manage your project. Rule of thumb seems to be 10 times the size of your raw image set; we’ve got a 100GB image set and set up a 1000GB volume (once the run is done you should be able to get rid of most of this expensive drive capacity, but it’s needed to complete the process). Set up the volume, attach it to your droplet, and `configure its mount point <https://www.digitalocean.com/docs/volumes/how-to/mount/>`__ (in this example we’re setting it to ``/mnt/odmdata/``)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:306
|
||||
# 20f755d7f03341529e48b584e1b0e55e
|
||||
msgid "Prep data and project"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:308
|
||||
# cef334da8d1d41d4ba595fdfcba1f97b
|
||||
msgid "Now push your images onto the server. You can use `Secure Copy (scp) <https://en.wikipedia.org/wiki/Secure_copy>`__ like so: ``scp -r /path/to/my/imagefolder odm@xxx.xxx.xxx.xxx:/mnt/odmdata/``."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:312
|
||||
# caec6177a1f049d78ab535505d62b1c9
|
||||
msgid "This pushes the entire folder full of images (that’s what the ``-r`` option does, “recursive”) into the remote location (in our example, into the volume we attached to the cloud machine at ``/mnt/odmdata/``."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:316
|
||||
# eb7294a6609b4efdb3cd3119c93f736b
|
||||
msgid "This will take some bandwidth. No way around the size of the files.\\ `1 <#footnote1>`__, \\ `2 <#footnote2>`__\\"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:320
|
||||
# 1f8557711eb34544ba19af21e5684d3a
|
||||
msgid "Directory structure"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:322
|
||||
# 381bc53afeb24707a36c6641acff96d8
|
||||
msgid "ODM requires the directories on the machine to be set up just so. The critical bits are the install folder (if you installed as above, it’s ``/home/odm/ODM/``) and the project folder (i.e. ``/mnt/odmdata/myproject/``)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:327
|
||||
# ff4d530d45e743fcba32ecf322e1201a
|
||||
msgid "ODM’s settings.yaml file specifies a single parent directory containing all projects. This is what goes in the project path line of the settings.yaml file (slightly confusingly, this is actually the *parent* directory of the individual project directories, which are specified by the project name parameter when calling ODM). Edit settings.yaml and set the project_path parameter to (as per our example setup) ``/mnt/odmdata/``, which in this case points to the Volume we created. Individual project directories are created within that."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:336
|
||||
# 1503b3f631e04941b5738d4d544faebf
|
||||
msgid "Individual project directories, i.e. ``/mnt/odmdata/myproject/`` contain the gcp_list.txt file, the image_groups.txt file, and the images folder for each project``\\`"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:339
|
||||
# bc6b6d2ec2774bd9819ac092ac6e620b
|
||||
msgid "The images folder, i.e. ``/mnt/odmdata/myproject/images/`` contains all of the images. If you set it up like this, the images don’t get re-copied because they’re already in the directory that ODM wants them in."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:343
|
||||
# 1f80a38663eb41a1afb1d36a39f237d9
|
||||
msgid "If you’ve got images with GPS info on them (as from an Ebee), use exiftool to massage the GPS information ``exiftool \"-GPSDOP<GPSZAccuracy\" .``.\\ `3 <#footnote3>`__\\ To do so you’ll need to install exiftool. The command for that is probably ``sudo apt install libimage-exiftool-perl``."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:348
|
||||
# 6f7fb819b1de4edb9ee6a1a381ea5d91
|
||||
msgid "Modify settings.yaml to specify the parent directory of the project folder (in this case the Volume we created, ``/mnt/odmdata/``). Make sure the images are in the correct spot, i.e. ``/mnt/odmdata/myproject/images`` and the other ancillary files (gcp_list.txt and image_groups.txt) are in the root folder ``/mnt/odmdata/myproject/``"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:354
|
||||
# 19d1b994192e430783ec441057978515
|
||||
msgid "if you have the images in separate folders for individual AOI blocks or flights (which you will if your flight management was organized), you can create an image_groups.txt file with the incantations ``for i in *; do cd $i; for j in *; do echo \"$j $i\" >> ../$i.txt; done; cd ../; done;`` and ``cd ../``, ``for i in myproject/*.txt; do cat $i >> image_groups.txt; done;``. That should create a file with the correct structure: a list of all image files and a “group name” after each one (which in this case will simply be the name of the folder it came from). Then move all of the image files into a single directory called images in the project root dir (so ``/mnt/odmdata/myproject/images/``). The image_groups.txt file will allow ODM to keep track of which images belong to the same batch, even though they’re all in a single directory."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:370
|
||||
# cc0ff87ac21745aa8ee81ec4fc1ed3e9
|
||||
msgid "Resize droplet, pull pin, run away"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:372
|
||||
# fe544c97b5f54e388dd5647cd8d45016
|
||||
msgid "Shut down and resize your machine to an appropriately monstrous number of CPUs and amount of memory. I use the memory-optimized machine with 24 dedicated vCPUs and 192GB of RAM (which costs about $1.60/hr—which adds up fast, it’s over $1000/month). Restart, and get to work quickly so as not to waste expensive big-droplet time."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:377
|
||||
# b2ce2ab6d9f04668a30f9d23cc47e27f
|
||||
msgid "Launch the ODM process via ssh using nohup (so that if you’re cut off, processing will continue)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:380
|
||||
# ce20de89099c4629a2a6b7b9f452e715
|
||||
msgid "Alternately you can use GNU screen to launch the process from a screen session which won’t stop if your connection is interrupted; launch ``screen``, and use ``<ctrl> a <ctrl> d`` to detach, ``screen -r`` to re-attach. But using screen won’t get you a log file of all of the console output unless you do something specific to capture that, while nohup gives you a file with all of the console output, including error messages, for free."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:387
|
||||
# 3c35097b84c648e7a3454804588d8411
|
||||
msgid "Note: as of 2020-03 the normal incantation ``python run.py -i /path/to/image/folder project_name`` seems *not* to work; the ``-i`` or ``--image`` parameter causes a weird error. So we drop the -i parameter, and rely on the project directory line in the settings.yaml file to direct ODM to the right place. Now using (including a split-merge):"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:398
|
||||
# dc1939fdcad6409a9242b537beec7b64
|
||||
msgid "This points ODM at the folder (in this example) ``/mnt/odmdata/myproject/``. Provided the image_groups.txt and gcp_list.txt are in this folder, the images are in ``/mnt/odmdata/myproject/images/``, and the project path in settings.yaml is ``/mnt/odmdata/`` it will not waste time and space copying images."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:405
|
||||
# c99e7f74b20d43b9ab8995c42a0050f6
|
||||
msgid "Note that this assumes you have an image_groups.txt file. If not, this ``-split-overlap 0`` will probably fuck things up, and the ``--split 1`` is literally a random number that will be ignored after the image_groups.txt file is loaded (I think it normally controls how many groups it splits a set of images into, but in our case we’re assuming the images are already grouped sensibly). If you don’t have a large dataset (>1000 images), omit the ``--split`` and ``--split-overlap`` options."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:414
|
||||
# 5d4a1c95f8cb4b8faea6418a8427c318
|
||||
msgid "Follow the progress using tail (so that you’ll know when it’s done)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:420
|
||||
# d47d6ae7516c4f09b87480cbde8787f4
|
||||
msgid "You may want to keep an eye on htop (to get a sense of the resource usage so that in future you can only spin up a machine as large as necessary)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:425
|
||||
# 4622af635b084049888da4994e2577cd
|
||||
msgid "After it finishes (assuming you survive that long)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:427
|
||||
# 737dba0bee8d4b0b8ea300971cf451f7
|
||||
msgid "As soon as processing is done, shut down the machine and resize it back down to the inexpensive minimum capacity."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:429
|
||||
# ff4a20334b164e7fb3f66717203e1046
|
||||
msgid "Start the machine back up, and log in via ssh."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:430
|
||||
# 2fe88a5e5c7a4cf9a6a0d4cf7eeeb75e
|
||||
msgid "If you want to save download bandwidth, you can compress the orthophoto using GDAL. Don’t add overviews, do that on your local machine to avoid making the file bigger before downloading it."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:438
|
||||
# cf523f232f6642deafbb485c5b243486
|
||||
msgid "Download using scp: ``scp odm@xxx.xxx.xxx.xxx:/mnt/odmdata/myproject/odm_orthophoto/odm_orthophoto.tif`` (or grab the compressed version you created in the last step)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:442
|
||||
# 45f3eb83df8249a380cc13bb16e198c0
|
||||
msgid "Once you get the file on your local computer, you can use QGIS to add overviews (“pyramids”) or use the GDAL command ``gdaladdo -r average /path/to/image.tif 2 4 8 16 32 64 128 256 512 1024``."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../tutorials.rst:446
|
||||
# 2611b4d17c384fee8d1d9905c7a52525
|
||||
msgid "You can archive the odm_texturing, odm_georeferencing, and odm-dem folders using tar to make them easier to download in one piece (and maybe smaller)."
|
||||
msgstr ""
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:01+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/arguments.rst:4
|
||||
msgid "Options and Flags"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/arguments.rst:6
|
||||
msgid "Arguments::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/arguments.rst:289
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/using.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,196 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/contributing.rst:4
|
||||
msgid "How To Contribute"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:6
|
||||
msgid ""
|
||||
"OpenDroneMap relies on community contributions. You can contribute in "
|
||||
"many ways, even if you are not a programmer."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:9
|
||||
msgid "Community Forum"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:11
|
||||
msgid ""
|
||||
"If you are looking to get involved, are stuck on a problem, or want to "
|
||||
"reach out, `the forum <https://community.opendronemap.org/>`_ is a great "
|
||||
"place to start. You may find your questions already answered or else you "
|
||||
"can find other useful tips and resources. You can also contribute your "
|
||||
"open access datasets for others to explore. It is a good place go before "
|
||||
"submitting bug reports or getting in touch with developers before writing"
|
||||
" a new feature."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:14
|
||||
msgid "Reporting Bugs"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:16
|
||||
msgid ""
|
||||
"Bugs are tracked as Github issues. Please create an issue in the "
|
||||
"repository and tag it with the Bug tag."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:18
|
||||
msgid ""
|
||||
"Explain the problem and include additional details to help maintainers "
|
||||
"reproduce the problem:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:20
|
||||
msgid ""
|
||||
"**Use a clear and descriptive title** for the issue to identify the "
|
||||
"problem."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:21
|
||||
msgid ""
|
||||
"**Describe the exact steps which reproduce the problem** in as many "
|
||||
"details as possible. For example, start by explaining how you run ODM "
|
||||
"(Docker, Vagrant, etc), e.g. which command exactly you used in the "
|
||||
"terminal. When listing steps, **don't just say what you did, but explain "
|
||||
"how you did it.**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:22
|
||||
msgid ""
|
||||
"**Provide specific examples to demonstrate the steps.** Include links to "
|
||||
"files or GitHub projects, or copy/pasteable snippets, which you use in "
|
||||
"those examples. If you're providing snippets in the issue, use `Markdown "
|
||||
"code blocks <https://help.github.com/articles/markdown-basics/#multiple-"
|
||||
"lines>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:23
|
||||
msgid ""
|
||||
"**Describe the behavior you observed after following the steps** and "
|
||||
"point out what exactly is the problem with that behavior."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:24
|
||||
msgid "**Explain which behavior you expected to see instead and why.**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:25
|
||||
msgid ""
|
||||
"**Include screenshots and animated GIFs** which show you following the "
|
||||
"described steps and clearly demonstrate the problem. You can use `this "
|
||||
"tool to record GIFs on macOS and Windows "
|
||||
"<http://www.cockos.com/licecap/>`_, and `this tool "
|
||||
"<https://github.com/colinkeenan/silentcast>`_ or `this one "
|
||||
"<https://github.com/GNOME/byzanz>`_ on Linux."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:26
|
||||
msgid ""
|
||||
"**If the problem is related to performance,** please post your machine's "
|
||||
"specs (host and guest machine)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:27
|
||||
msgid ""
|
||||
"**If the problem wasn't triggered by a specific action,** describe what "
|
||||
"you were doing before the problem happened and share more information "
|
||||
"using the guidelines below."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:29
|
||||
msgid "Include details about your configuration and environment:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:31
|
||||
msgid ""
|
||||
"**Which version of ODM are you using?** A stable release? a clone of "
|
||||
"master?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:32
|
||||
msgid "**What's the name and version of the OS you're using?**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:33
|
||||
msgid ""
|
||||
"**Are you running ODM in a virtual machine or Docker?** If so, which VM "
|
||||
"software are you using and which operating systems and versions are used "
|
||||
"for the host and the guest?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:36
|
||||
msgid "Template For Submitting Bug Reports"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:69
|
||||
msgid "Pull Requests"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:71
|
||||
msgid ""
|
||||
"Include screenshots and animated GIFs in your pull request whenever "
|
||||
"possible."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:72
|
||||
msgid "Follow the PEP8 Python Style Guide."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:73
|
||||
msgid "End files with a newline."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:76
|
||||
msgid "Avoid platform-dependent code:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:75
|
||||
msgid "Use require('fs-plus').getHomeDirectory() to get the home directory."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:76
|
||||
msgid "Use path.join() to concatenate filenames."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:77
|
||||
msgid ""
|
||||
"Use os.tmpdir() rather than /tmp when you need to reference the temporary"
|
||||
" directory."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:79
|
||||
msgid "Using a plain return when returning explicitly at the end of a function."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:79
|
||||
msgid "Not return null, return undefined, null, or undefined"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:81
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/contributing.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "How to contribute"
|
||||
#~ msgstr ""
|
||||
|
|
@ -1,78 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/flying.rst:2
|
||||
msgid "Flying Tips"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:4
|
||||
msgid ""
|
||||
"The `Humanitarian OpenStreetMap team <https://www.hotosm.org/>`_ has "
|
||||
"guidelines on `flying for UAV mapping <https://uav-"
|
||||
"guidelines.openaerialmap.org/>`_:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:6
|
||||
msgid ""
|
||||
"`Choosing the right UAV <https://uav-"
|
||||
"guidelines.openaerialmap.org/pages/05-choosing-the-right-uav/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:8
|
||||
msgid ""
|
||||
"`Choosing the right sensor <https://uav-"
|
||||
"guidelines.openaerialmap.org/pages/06-choosing-the-sensor/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:10
|
||||
msgid ""
|
||||
"`Mission preparation <https://uav-guidelines.openaerialmap.org/pages/07"
|
||||
"-preparing-for-the-uav-mission/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:12
|
||||
msgid ""
|
||||
"The guidelines are intended for drone mapping projects on islands, but "
|
||||
"have general use for all drone mappers."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:14
|
||||
msgid ""
|
||||
"See also DroneDeploy's guide on `Making Successful Maps "
|
||||
"<https://support.dronedeploy.com/docs/making-successful-maps>`_, which "
|
||||
"provides great tips on mission planning."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:16
|
||||
msgid ""
|
||||
"Finally, lens distortion is a challenge in projects requiring accurate 3D"
|
||||
" data. See our section in these docs on `Camera Calibration "
|
||||
"<tutorials.html#calibrating-the-camera>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:18
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/flying.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Flying tips"
|
||||
#~ msgstr ""
|
||||
|
|
@ -1,181 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/gcp.rst:3
|
||||
msgid "Ground Control Points"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:5
|
||||
msgid ""
|
||||
"Ground control points are useful for correcting distortions in the data "
|
||||
"and referencing the data to know coordinate systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:7
|
||||
msgid "The format of the GCP file is simple."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:9
|
||||
msgid ""
|
||||
"The first line should contain the name of the projection used for the geo"
|
||||
" coordinates. This can be specified either as a PROJ string (e.g. "
|
||||
"``+proj=utm +zone=10 +ellps=WGS84 +datum=WGS84 +units=m +no_defs``), EPSG"
|
||||
" code (e.g. ``EPSG:4326``) or as a ``WGS84 UTM <zone>[N|S]`` value (eg. "
|
||||
"``WGS84 UTM 16N``)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:10
|
||||
msgid ""
|
||||
"Subsequent lines are the X, Y & Z coordinates, your associated pixels, "
|
||||
"the image filename and optional extra fields, separated by tabs or "
|
||||
"spaces:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:11
|
||||
msgid "Elevation values can be set to \"NaN\" to indicate no value"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:12
|
||||
msgid "The 7th column (optional) typically contains the label of the GCP."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:14
|
||||
msgid "GCP file format::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:20
|
||||
msgid "Example::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:27
|
||||
msgid ""
|
||||
"If you supply a GCP file called ``gcp_list.txt`` then ODM will "
|
||||
"automatically detect it. If it has another name you can specify using "
|
||||
"``--gcp <path>``. If you have a gcp file and want to do georeferencing "
|
||||
"with exif instead, then you can specify ``--use-exif``. If you have high "
|
||||
"precision GPS measurements in your images (RTK) and want to use that "
|
||||
"information along with a gcp file, you can specify ``--force-gps``."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:29
|
||||
msgid ""
|
||||
"`This post has some information about placing Ground Control Targets "
|
||||
"before a flight <http://diydrones.com/profiles/blogs/ground-control-"
|
||||
"points-gcps-for-aerial-photography>`_, but if you already have images, "
|
||||
"you can find your own points in the images post facto. It's important "
|
||||
"that you find high-contrast objects that are found in **at least** 3 "
|
||||
"photos, and that you find a minimum of 5 objects."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:31
|
||||
msgid ""
|
||||
"Sharp corners are good picks for GCPs. You should also place/find the "
|
||||
"GCPs evenly around your survey area."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:33
|
||||
msgid ""
|
||||
"The ``gcp_list.txt`` file must be created in the base of your project "
|
||||
"folder."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:35
|
||||
msgid ""
|
||||
"For good results your file should have a minimum of 15 lines after the "
|
||||
"header (5 points with 3 images to each point)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:39
|
||||
msgid "User Interfaces"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:41
|
||||
msgid "You can use one of two user interfaces for creating GCP files:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:43
|
||||
msgid "`POSM GCPi <https://github.com/posm/posm-gcpi>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:44
|
||||
msgid "`GCP Editor Pro <https://github.com/uav4geo/GCPEditorPro>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:48
|
||||
msgid "POSM GCPi"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:50
|
||||
msgid ""
|
||||
"The POSM GCPi is loaded by default on WebODM. An example is available at "
|
||||
"`the WebODM Demo <http://demo.webodm.org/plugins/posm-gcpi/>`_. To use "
|
||||
"this with known ground control XYZ values, one would do the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:52
|
||||
msgid ""
|
||||
"Create a GCP list that only includes gcp name (this is the label that "
|
||||
"will be seen in the GCP interface), x, y, and z, with a header with a "
|
||||
"proj4 string of your GCPs (make sure they are in a planar coordinate "
|
||||
"system, such as UTM. It should look something like this:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:63
|
||||
msgid ""
|
||||
"Then one can load this GCP list into the interface, load the images, and "
|
||||
"place each of the GCPs in the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:67
|
||||
msgid "GCP Editor Pro"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:69
|
||||
msgid ""
|
||||
"This app needs to be installed separately or can be loaded as a WebODM "
|
||||
"plugin from `https://github.com/uav4geo/GCPEditorPro "
|
||||
"<https://github.com/uav4geo/GCPEditorPro>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:71
|
||||
msgid ""
|
||||
"Create a CSV file that includes the gcp name, northing, easting and "
|
||||
"elevation."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:80
|
||||
msgid ""
|
||||
"Then import the CSV from the main screen and type ``+proj=utm +zone=37 "
|
||||
"+south +ellps=WGS84 +datum=WGS84 +units=m +no_defs`` in the ``EPSG/PROJ``"
|
||||
" box."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:82
|
||||
msgid ""
|
||||
"The following screen will display a map from where to select the GCPs to "
|
||||
"tag and import the respective images."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:85
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/tutorials.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,30 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:01+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/index.rst:8
|
||||
msgid "Welcome to OpenDroneMap's documentation"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/index.rst:40
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/index.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,785 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/installation.rst:4
|
||||
msgid "Installation and Getting Started"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:6
|
||||
msgid ""
|
||||
"This section is excerpted and modified with permission from "
|
||||
"`OpenDroneMap: The Missing Guide <https://odmbook.com>`_, by Piero "
|
||||
"Toffanin."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:8
|
||||
msgid ""
|
||||
"Until recently OpenDroneMap was the term used to refer to a single "
|
||||
"command line application (what is now known as the ODM project). With "
|
||||
"the recent development of a web interface, an API and other tools, "
|
||||
"OpenDroneMap has become an ecosystem of various applications to process, "
|
||||
"analyze and display aerial data. This ecosystem is made of several "
|
||||
"components:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:14
|
||||
msgid ""
|
||||
"**ODM** is the processing engine, which can be used from the command "
|
||||
"line. It takes images as input and produces a variety of outputs, "
|
||||
"including point clouds, 3D models and orthophotos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:20
|
||||
msgid ""
|
||||
"**NodeODM** is a light-weight API built on top of ODM. It allows users "
|
||||
"and applications to access the functions of ODM over a computer network"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:26
|
||||
msgid ""
|
||||
"**WebODM** is a friendly user interface that includes a map viewer, a 3D "
|
||||
"viewer, user logins, a plugin system and many other features that are "
|
||||
"expected of modern drone mapping platforms"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:32
|
||||
msgid ""
|
||||
"**CloudODM** is a small command line client to communicate with ODM via "
|
||||
"the NodeODM API"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:38
|
||||
msgid ""
|
||||
"**PyODM** is a Python SDK for creating tasks via the NodeODM API. We "
|
||||
"cover it in more detail in the “Automated Processing With Python” chapter"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:44
|
||||
msgid ""
|
||||
"**ClusterODM** is a load balancer for connecting together multiple "
|
||||
"NodeODM instances"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:46
|
||||
msgid ""
|
||||
"ODM, NodeODM and WebODM are available on all major platforms (Windows, "
|
||||
"macOS and Linux) via a program called docker, which is required to run "
|
||||
"the software. Docker offers a way to run “containers”. Containers are "
|
||||
"packaged copies of an entire system, its software and its dependencies. "
|
||||
"These containers run within a virtual environment. On Linux this virtual "
|
||||
"environment is available from the operating system and is very efficient."
|
||||
" On macOS and Windows the containers run within a VM, so there’s a bit of"
|
||||
" a overhead. but it’s still very suitable for running the software. Once "
|
||||
"installed users do not have to worry much about docker, as it operates "
|
||||
"(almost) transparently."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:48
|
||||
msgid ""
|
||||
"Without docker it would not be possible to run ODM on Windows or macOS. "
|
||||
"On these platforms ODM cannot run natively. Future development efforts "
|
||||
"are being focused on leveraging the new Windows Subsystem for Linux (WSL)"
|
||||
" and the possibility to make a native port of all dependencies to macOS, "
|
||||
"which is going to make the installation much easier."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:50
|
||||
msgid ""
|
||||
"On Ubuntu Linux 16.04 it’s feasible to run all OpenDroneMap software "
|
||||
"natively. However, because there’s very little performance penalty for "
|
||||
"running docker on Linux and docker is straightforward to setup on this "
|
||||
"platform, we don’t recommend it. On Linux the advantages of "
|
||||
"containerization far outweigh a tiny performance penalty. With docker "
|
||||
"users also get easy one-step updates of the software, so that’s nice."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:54
|
||||
msgid "Hardware Recommendations"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:56
|
||||
msgid "The bare minimum requirements for running the software are:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:59
|
||||
msgid "64bit CPU manufactured on or after 2010"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:60
|
||||
msgid "20 GB of disk space"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:61
|
||||
msgid "4 GB RAM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:63
|
||||
msgid ""
|
||||
"No more than 100-200 images can be processed with the above "
|
||||
"specifications (the software will run out of memory). Recommended "
|
||||
"requirements are:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:65
|
||||
msgid "Latest Generation CPU"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:66
|
||||
msgid "100 GB of disk space"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:67
|
||||
msgid "16 GB RAM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:69
|
||||
msgid ""
|
||||
"The above will allow for a few hundred images to be processed without too"
|
||||
" many issues. A CPU with more cores will allow for faster processing, "
|
||||
"while a graphics card (GPU) currently has no impact on performance. For "
|
||||
"processing more images, add more disk space and RAM linearly to the "
|
||||
"number of images you need to process."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:75
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:77
|
||||
msgid ""
|
||||
"We recommend people use `docker <https://www.docker.com>`_ for running "
|
||||
"ODM, whether you are on Windows, macOS or Linux."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:80
|
||||
msgid "Windows"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:82
|
||||
msgid ""
|
||||
"To run OpenDroneMap you need at least Windows 7. Previous versions of "
|
||||
"Windows are not supported."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:86 ../../source/installation.rst:238
|
||||
msgid "Step 1. Check Virtualization Support"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:88
|
||||
msgid ""
|
||||
"Docker requires a feature from your CPU called virtualization, which "
|
||||
"allows it to run virtual machines (VMs). Make sure you have it enabled! "
|
||||
"Sometimes this is disabled. To check, on Windows 8 or higher you can open"
|
||||
" the **Task Manager** (press CTRL+SHIFT+ESC) and switch to the "
|
||||
"**Performance** tab."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:94
|
||||
msgid "*Virtualization should be enabled*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:96
|
||||
msgid ""
|
||||
"On Windows 7 to see if you have virtualization enabled you can use the "
|
||||
"`Microsoft® Hardware-Assisted Virtualization Detection Tool <http:// "
|
||||
"www.microsoft.com/en-us/download/details.aspx?id=592>`_ instead."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:99
|
||||
msgid ""
|
||||
"If virtualization is disabled, you’ll need to enable it. The procedure "
|
||||
"unfortunately is a bit different for each computer model, so the best way"
|
||||
" to do this is to look up on a search engine “how to enable vtx for <type"
|
||||
" your computer model here>”. Often times it’s a matter of restarting the "
|
||||
"computer, immediately pressing F2 or F12 during startup, navigating the "
|
||||
"boot menu and changing the settings to enable virtualization (often "
|
||||
"called “VT-X”)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:105
|
||||
msgid ""
|
||||
"*Common keys to press at computer startup to access the boot menu for "
|
||||
"various PC vendors*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:108 ../../source/installation.rst:257
|
||||
msgid "Step 2. Install Requirements"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:110
|
||||
msgid "First, you’ll need to install:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:112
|
||||
msgid "Git: https://git-scm.com/downloads"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:113
|
||||
msgid "Python (latest version 3): https://www.python.org/downloads/windows/"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:115
|
||||
msgid ""
|
||||
"For Python 3, make sure you check **Add Python 3.x to PATH** during the "
|
||||
"installation."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:121
|
||||
msgid ""
|
||||
"*Don’t forget to add the Python executable to your PATH (so that you can "
|
||||
"run commands with it)*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:123
|
||||
msgid ""
|
||||
"Then, only if you are on Windows 10 Home, Windows 8 (any version) or "
|
||||
"Windows 7 (any version), install:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:125
|
||||
msgid ""
|
||||
"Docker Toolbox: "
|
||||
"https://github.com/docker/toolbox/releases/download/v18.09.3/DockerToolbox-18.09.3.exe"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:127
|
||||
msgid ""
|
||||
"If you are on Windows 10 Professional or a newer version, you should "
|
||||
"install instead:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:129
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Docker for Windows: "
|
||||
"https://download.docker.com/win/stable/Docker%20for%20Windows%20Installer.exe"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:131
|
||||
msgid ""
|
||||
"Please do **NOT** install both docker programs. They are different and "
|
||||
"will create a mess if they are both installed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:133
|
||||
msgid ""
|
||||
"After installing docker, launch it from the Desktop icon that is created "
|
||||
"from the installation (**Docker Quickstart** in the case of Docker "
|
||||
"Toolbox, **Docker for Windows** for Docker for Windows). This is "
|
||||
"important, do not skip this step. If there are errors, follow the prompts"
|
||||
" on screen to fix them."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:136 ../../source/installation.rst:299
|
||||
msgid "Step 3. Check Memory and CPU Allocation"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:138
|
||||
msgid ""
|
||||
"Docker on Windows works by running a VM in the background (think of a VM "
|
||||
"as a “computer emulator”). This VM has a certain amount of memory "
|
||||
"allocated and WebODM can only use as much memory as it’s allocated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:140
|
||||
msgid ""
|
||||
"If you installed Docker Toolbox (see below if you installed Docker for "
|
||||
"Windows instead):"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:142
|
||||
msgid "Open the **VirtualBox Manager** application"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:143
|
||||
msgid ""
|
||||
"Right click the **default** VM and press **Close (ACPI Shutdown)** to "
|
||||
"stop the machine"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:144
|
||||
msgid "Right click the **default** VM and press **Settings...**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Move the **Base Memory** slider from the **System** paneland allocate "
|
||||
"60-70% of all available memory, optionally adding 50% of the available "
|
||||
"processors from the **Processor** tab also"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:151
|
||||
msgid "*VirtualBox default VM settings*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:153
|
||||
msgid "Then press **OK**, right click the **default** VM and press **Start**."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:155
|
||||
msgid "If you installed Docker for Windows instead:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:157
|
||||
msgid "Look in the system tray and right click the “white whale” icon."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:158
|
||||
msgid "From the menu, press **Settings...**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:159
|
||||
#, python-format
|
||||
msgid ""
|
||||
"From the panel, click **Advanced** and use the sliders to allocate 60-70%"
|
||||
" of available memory and use half of all available CPUs."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:160
|
||||
msgid "Press **Apply**."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:166
|
||||
msgid "*Step 1 Docker icon*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:172
|
||||
msgid "*Step 3 & 4 Docker settings*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:175
|
||||
msgid "Step 4. Download WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:177
|
||||
msgid "Open the **Git Gui** program that comes installed with Git. From there:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:179
|
||||
msgid "When Git Gui opens, click 'Clone Existing Repository' option"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:180
|
||||
msgid "In **Source Location** type: https://github.com/OpenDroneMap/WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:181
|
||||
msgid ""
|
||||
"In **Target Directory** click browse and navigate to a folder of your "
|
||||
"choosing (create one if necessary)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:182
|
||||
msgid "Press **Clone**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:188
|
||||
msgid "*Git Gui*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:190
|
||||
msgid "If the download succeeded, you should now see this window:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:196
|
||||
msgid "*Git Gui after successful download (clone)*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:198
|
||||
msgid ""
|
||||
"Go to the **Repository** menu, then click **Create Desktop Icon**. This "
|
||||
"will allow you to come back to this application easily in the future."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:201
|
||||
msgid "Step 4. Launch WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:203
|
||||
msgid ""
|
||||
"From Git Gui, go to the **Repository** menu, then click **Git Bash**. "
|
||||
"From the command line terminal type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:209
|
||||
msgid ""
|
||||
"Several components will download to your machine at this point, including"
|
||||
" WebODM, NodeODM and ODM. After the download you should be greeted by the"
|
||||
" following screen:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:215
|
||||
msgid "*Console output after starting WebODM for the first time*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:217
|
||||
msgid ""
|
||||
"If you are using Docker for Windows, open a web browser to "
|
||||
"http://localhost:8000"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:218
|
||||
msgid ""
|
||||
"If you are using Docker Toolbox, find the IP address to connect to by "
|
||||
"typing:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:224
|
||||
msgid "You should get a result like the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:230
|
||||
msgid ""
|
||||
"Then connect to http://192.168.1.100:8000 (replacing the IP address with "
|
||||
"the proper one)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:233
|
||||
msgid "macOS"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:235
|
||||
msgid ""
|
||||
"Most modern (post 2010) Mac computers running macOS Sierra 10.12 or "
|
||||
"higher can run OpenDroneMap using docker, as long as hardware "
|
||||
"virtualization is supported (see below)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:240
|
||||
msgid "Open a Terminal window and type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:246
|
||||
msgid "You will get a response similar to the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:252
|
||||
msgid ""
|
||||
"If the result is *kern.hv_support: 1*, then your Mac is supported! "
|
||||
"Continue with Step 2."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:254
|
||||
msgid ""
|
||||
"If the result is *kern.hv_support: 0*, unfortunately it means your Mac is"
|
||||
" too old to run OpenDroneMap. :("
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:259
|
||||
msgid "There are only two programs to install:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:261
|
||||
msgid "Docker: https://download.docker.com/mac/stable/Docker.dmg"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:262
|
||||
msgid "Git: https://sourceforge.net/projects/git-osx-installer/files/"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:264
|
||||
msgid ""
|
||||
"After installing docker you should find an icon that looks like a whale "
|
||||
"in the task bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:270
|
||||
msgid "*Docker app running*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:272
|
||||
msgid ""
|
||||
"You can verify that docker is running properly by opening the "
|
||||
"**Terminal** app and typing:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:278
|
||||
msgid "Which should return"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:284
|
||||
msgid "To verify that git is installed, simply type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:290
|
||||
msgid "Which should return something similar to the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:296
|
||||
msgid ""
|
||||
"If you get a “bash: git: command not found”, try to restart your "
|
||||
"**Terminal** app and double-check for any errors during the install "
|
||||
"process."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:301
|
||||
msgid ""
|
||||
"Docker on macOS works by running a VM in the background (think of it as a"
|
||||
" “computer emulator”). This VM has a certain amount of memory allocated "
|
||||
"and WebODM can only use as much memory as it’s allocated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:303
|
||||
msgid "Right click the whale icon from the task bar and click **Preferences**..."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:304
|
||||
msgid "Select the **Advanced** tab"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:305
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Adjust the CPUs slider to use half of all available CPUs and the memory "
|
||||
"to use 60-70% of all available memory"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:306
|
||||
msgid "Press **Apply & Restart**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:312
|
||||
msgid "*Docker advanced settings*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:315
|
||||
msgid "Step 4. Download and Launch WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:317
|
||||
msgid "From a **Terminal** type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:325 ../../source/installation.rst:426
|
||||
msgid "Then open a web browser to http://localhost:8000."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:328
|
||||
msgid "Linux"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:330
|
||||
msgid ""
|
||||
"OpenDroneMap can run on any Linux distribution that supports docker. "
|
||||
"According to `docker’s documentation website "
|
||||
"<https://docs.docker.com/install/>`_ the officially supported "
|
||||
"distributions are CentOS, Debian, Ubuntu and Fedora, with static binaries"
|
||||
" available for others. If you have to pick a distribution solely for "
|
||||
"running OpenDroneMap, Ubuntu is the recommended way to go."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:333
|
||||
msgid "Step 1. Install Requirements"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:335
|
||||
msgid "There are four programs that need to be installed:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:337
|
||||
msgid "Docker"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:338
|
||||
msgid "Git"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:339
|
||||
msgid "Python (2 or 3)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:340
|
||||
msgid "Pip"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:342
|
||||
msgid ""
|
||||
"We cannot possibly cover the installation process for every Linux "
|
||||
"distribution out there, so we’ll limit the instructions to those that are"
|
||||
" distributions officially supported by docker. In all cases it’s just a "
|
||||
"matter of opening a terminal prompt and typing a few commands."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:345
|
||||
msgid "Install on Ubuntu / Debian"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:347 ../../source/installation.rst:359
|
||||
#: ../../source/installation.rst:370 ../../source/installation.rst:381
|
||||
msgid "Commands to type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:357
|
||||
msgid "Install on CentOS / RHEL"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:368
|
||||
msgid "Install on Fedora"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:379
|
||||
msgid "Install on Arch"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:388
|
||||
msgid "Step 2. Check Additional Requirements"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:390
|
||||
msgid ""
|
||||
"In addition to the three programs above, the dockercompose script is also"
|
||||
" needed. Sometimes it’s already installed with docker, but sometimes it "
|
||||
"isn’t. To verify if it’s installed try to type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:396
|
||||
msgid "You should see somethings similar to the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:402
|
||||
msgid "If instead you get something similar to the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:408
|
||||
msgid "you can install it by using pip:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:416
|
||||
msgid "Step 3. Download and Launch WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:418
|
||||
msgid "From a terminal type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:429
|
||||
msgid "Basic Commands and Troubleshooting"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:431
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The cool thing about using docker is that 99% of the tasks you’ll ever "
|
||||
"need to perform while using WebODM can be done via the ./webodm.sh "
|
||||
"script. You have already encountered one of them:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:437
|
||||
msgid ""
|
||||
"which takes care of starting WebODM and setting up a default processing "
|
||||
"node (node-odm-1). If you want to stop WebODM, you can already guess what"
|
||||
" the command is:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:443
|
||||
msgid ""
|
||||
"There are several other commands you can use, along with different flags."
|
||||
" Flags are parameters passed to the ./webodm.sh command and are typically"
|
||||
" prefixed with “–”. The **port** flag for example instructs WebODM to use"
|
||||
" a different network port:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:449
|
||||
msgid "Other useful commands are listed below:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:468
|
||||
msgid ""
|
||||
"`The community forum <https://community.opendronemap.org>`_ is a great "
|
||||
"place to ask for help if you get stuck during any of the installation"
|
||||
" steps and for general questions on using the ./webodm.sh script."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:471
|
||||
msgid "Hello, WebODM!"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:473
|
||||
msgid ""
|
||||
"After running ./webodm.sh start and opening WebODM in the browser, you "
|
||||
"will be greeted with a welcome message and will be asked to create the "
|
||||
"first user. Take some time to familiarize yourself with the web interface"
|
||||
" and explore its various menus."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:479
|
||||
msgid "*WebODM Dashboard*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:481
|
||||
msgid ""
|
||||
"Notice that under the **Processing Nodes** menu there’s a \"node-odm-1\" "
|
||||
"node already configured for you to use. This is a NodeODM node and has "
|
||||
"been created automatically by WebODM. This node is running on the same "
|
||||
"machine as WebODM."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:483
|
||||
msgid ""
|
||||
"If you’ve made it this far, congratulations! Now it’s time to start "
|
||||
"processing some data."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:490
|
||||
msgid "Running on more than one machine"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:492
|
||||
msgid ""
|
||||
"**Optionally:** If you have another computer, you can repeat the "
|
||||
"installation process (install docker, git, python, etc.) and launch a new"
|
||||
" NodeODM node by typing from a Terminal/Git Bash window:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:498
|
||||
msgid ""
|
||||
"The above command asks docker to launch a new container using the "
|
||||
"opendronemap/nodeodm image from Docker Hub (the latest version of "
|
||||
"NodeODM), using port 3000, setting a maximum number of concurrent tasks "
|
||||
"to 1 and to protect the node from unauthorized access using the password "
|
||||
"\"secret\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:500
|
||||
msgid ""
|
||||
"From WebODM you can then press the **Add New** button under **Processing "
|
||||
"Nodes**. For the **hostname/IP** field type the IP of the second "
|
||||
"computer. For the **port** field type “3000”. For the **token** field "
|
||||
"type “secret”. You can also add an optional **label** for your node, such"
|
||||
" as “second computer”. Then press **Save**."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:502
|
||||
msgid ""
|
||||
"If everything went well, you should now have two processing nodes! You "
|
||||
"will be able to process multiple tasks in parallel using two different "
|
||||
"machines."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:504
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/installation.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "In **Source Location** type: https://github.com/Open-DroneMap/WebODM"
|
||||
#~ msgstr ""
|
||||
|
|
@ -1,275 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:01+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/large.rst:4
|
||||
msgid "Splitting Large Datasets"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:6
|
||||
msgid ""
|
||||
"Starting with ODM version ``0.6.0`` you can split up very large datasets "
|
||||
"into manageable chunks (called submodels), running the pipeline on each "
|
||||
"chunk, and then producing merged DEMs, orthophotos and point clouds. The "
|
||||
"process is referred to as \"split-merge\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:8
|
||||
msgid ""
|
||||
"Why might you use the split-merge pipeline? If you have a very large "
|
||||
"number of images in your dataset, split-merge will help make the "
|
||||
"processing more manageable on a large machine (it will require less "
|
||||
"memory). If you have many machines all connected to the same network you "
|
||||
"can also process the submodels in parallel, thus allowing for horizontal "
|
||||
"scaling and processing thousands of images more quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:10
|
||||
msgid ""
|
||||
"Split-merge works in WebODM out of the box as long as the processing "
|
||||
"nodes support split-merge, by enabling the ``--split`` option when "
|
||||
"creating a new task."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:13
|
||||
msgid "Calibrate images"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:15
|
||||
msgid ""
|
||||
"Image calibration is recommended (but not required) for large datasets "
|
||||
"because error propagation due to image distortion could cause a bowl "
|
||||
"effect on the models. Calibration instructions can be found at "
|
||||
"`Calibrate Images <tutorials.html#calibrating-the-camera>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:21
|
||||
msgid ""
|
||||
"Bowling effect on point cloud over 13,000+ image dataset collected by "
|
||||
"World Bank Tanzania over the flood prone Msimbasi Basin, Dar es Salaam, "
|
||||
"Tanzania."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:24
|
||||
msgid "Local Split-Merge"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:26
|
||||
msgid ""
|
||||
"Splitting a dataset into more manageable submodels and sequentially "
|
||||
"processing all submodels on the same machine is easy! Just use "
|
||||
"``--split`` and ``--split-overlap`` to decide the the average number of "
|
||||
"images per submodels and the overlap (in meters) between submodels "
|
||||
"respectively"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:32
|
||||
msgid ""
|
||||
"If you already know how you want to split the dataset, you can provide "
|
||||
"that information and it will be used instead of the clustering algorithm."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:34
|
||||
msgid ""
|
||||
"The grouping can be provided by adding a file named image_groups.txt in "
|
||||
"the main dataset folder. The file should have one line per image. Each "
|
||||
"line should have two words: first the name of the image and second the "
|
||||
"name of the group it belongs to. For example::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:42
|
||||
msgid ""
|
||||
"will create 3 submodels. Make sure to pass ``--split-overlap 0`` if you "
|
||||
"manually provide a ``image_groups.txt`` file."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:46
|
||||
msgid "Distributed Split-Merge"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:48
|
||||
msgid ""
|
||||
"ODM can also automatically distribute the processing of each submodel to "
|
||||
"multiple machines via `NodeODM "
|
||||
"<https://github.com/OpenDroneMap/NodeODM>`_ nodes, orchestrated via "
|
||||
"`ClusterODM <https://github.com/OpenDroneMap/ClusterODM>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:55
|
||||
msgid "Getting Started with Distributed Split-Merge"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:57
|
||||
msgid "The first step is start ClusterODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:63
|
||||
msgid ""
|
||||
"Then on each machine you want to use for processing, launch a NodeODM "
|
||||
"instance via"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:69
|
||||
msgid ""
|
||||
"Connect via telnet to ClusterODM and add the IP addresses/port of the "
|
||||
"machines running NodeODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:84
|
||||
msgid "Make sure you are running version ``1.5.1`` or higher of the NodeODM API."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:86
|
||||
msgid ""
|
||||
"At this point, simply use the ``--sm-cluster`` option to enable "
|
||||
"distributed split-merge"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:93
|
||||
msgid "Understanding the Cluster"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:95
|
||||
msgid ""
|
||||
"When connected via telnet, it is possible to interrogate what is "
|
||||
"happening on the cluster. For example, we can use the command HELP to "
|
||||
"find out available commands"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:118
|
||||
msgid ""
|
||||
"If, for example, the NodeODM instance wasn't active when ClusterODM "
|
||||
"started, we might list nodes and see something as follows"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:125
|
||||
msgid ""
|
||||
"To address this, we can start up our local node (if not already started),"
|
||||
" and then perform a ``NODE UPDATE``"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:135
|
||||
msgid "Accessing the Logs"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:137
|
||||
msgid ""
|
||||
"While a process is running, it is also possible to list the tasks, and "
|
||||
"view the task output"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:145
|
||||
msgid "Autoscaling ClusterODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:147
|
||||
msgid ""
|
||||
"ClusterODM also includes the option to autoscale on multiple platforms, "
|
||||
"including, to date, Amazon and Digital Ocean. This allows users to reduce"
|
||||
" costs associated with always-on instances as well as being able to scale"
|
||||
" processing based on demand."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:149
|
||||
msgid "To setup autoscaling you must:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:151
|
||||
msgid "Have a functioning version of NodeJS installed and then install ClusterODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:159
|
||||
msgid "Make sure docker-machine is installed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:160
|
||||
msgid "Setup a S3-compatible bucket for storing results."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:161
|
||||
msgid ""
|
||||
"Create a configuration file for `DigitalOcean "
|
||||
"<https://github.com/OpenDroneMap/ClusterODM/blob/master/docs/digitalocean.md>`_"
|
||||
" or `Amazon Web Services "
|
||||
"<https://github.com/OpenDroneMap/ClusterODM/blob/master/docs/aws.md>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:163
|
||||
msgid "You can then launch ClusterODM with"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:169
|
||||
msgid "You should see something similar to following messages in the console"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:177
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You should always have at least one static NodeODM node attached to "
|
||||
"ClusterODM, even if you plan to use the autoscaler for all processing. If"
|
||||
" you setup auto scaling, you can't have zero nodes and rely 100% on the "
|
||||
"autoscaler. You need to attach a NodeODM node to act as the \"reference "
|
||||
"node\" otherwise ClusterODM will not know how to handle certain requests "
|
||||
"(for the forwarding the UI, for validating options prior to spinning up "
|
||||
"an instance, etc.). For this purpose, you should add a \"dummy\" NodeODM "
|
||||
"node and lock it"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:187
|
||||
msgid "This way all tasks will be automatically forwarded to the autoscaler."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:190
|
||||
msgid "Limitations"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:192
|
||||
msgid ""
|
||||
"The 3D textured meshes are currently not being merged as part of the "
|
||||
"workflow (only point clouds, DEMs and orthophotos are)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:194
|
||||
msgid ""
|
||||
"GCPs are fully supported, however, there needs to be at least 3 GCP "
|
||||
"points on each submodel for the georeferencing to take place. If a "
|
||||
"submodel has fewer than 3 GCPs, a combination of the remaining GCPs + "
|
||||
"EXIF data will be used instead (which is going to be less accurate). We "
|
||||
"recommend using the ``image_groups.txt`` file to accurately control the "
|
||||
"submodel split when using GCPs."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:197
|
||||
msgid "Acknowledgments"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:198
|
||||
msgid ""
|
||||
"Huge props to Pau and the folks at Mapillary for their amazing "
|
||||
"contributions to OpenDroneMap through their OpenSfM code, which is a key "
|
||||
"component of the split-merge pipeline. We look forward to further pushing"
|
||||
" the limits of OpenDroneMap and seeing how big a dataset we can process."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:200
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/large.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,77 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/multispectral.rst:2
|
||||
msgid "Multispectral Support"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:4
|
||||
msgid ""
|
||||
"Since version 0.9.9 ODM has basic support for radiometric normalization, "
|
||||
"which is able to generate reflectance orthophotos from multispectral "
|
||||
"cameras. Multispectral cameras capture multiple shots of the scene using "
|
||||
"different band sensors."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:7
|
||||
msgid "Hardware"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:9
|
||||
msgid ""
|
||||
"While we aim to support as many cameras as possible, multispectral "
|
||||
"support has been developed using the following cameras, so they will work"
|
||||
" better:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:11
|
||||
msgid "`MicaSense RedEdge-MX and Altum <https://www.micasense.com/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:12
|
||||
msgid "`Sentera 6X <https://sentera.com/6x/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:14
|
||||
msgid ""
|
||||
"Other cameras might also work. You can help us expand this list by "
|
||||
"`sharing datasets <https://community.opendronemap.org/c/datasets/10>`_ "
|
||||
"captured with other cameras."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:17
|
||||
msgid "Usage"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:19
|
||||
msgid ""
|
||||
"Process all the images from all bands at once (do not separate the bands "
|
||||
"into multiple folders) and pass the `--radiometric-calibration` parameter"
|
||||
" to enable radiometric normalization. If the images are part of a multi-"
|
||||
"camera setup, the resulting orthophoto will have N bands, one for each "
|
||||
"camera (+ alpha)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:25
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/multispectral.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,141 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/outputs.rst:2
|
||||
msgid "OpenDroneMap Outputs"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:4
|
||||
msgid "Listed below are some of the useful outputs ODM produces."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:7
|
||||
msgid "Point Cloud"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:9
|
||||
msgid ""
|
||||
"``odm_georeferencing/odm_georeferenced_model.ply/laz/csv`` -- The "
|
||||
"georeferenced point cloud in different file formats"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:15
|
||||
msgid ""
|
||||
"*Point cloud over State University Zanzibar, courtesy of* `Khadija "
|
||||
"Abdullah Ali <https://www.linkedin.com/in/khadija-abdulla-ali-"
|
||||
"56b4044a/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:19
|
||||
msgid "3D Textured Model"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:21
|
||||
msgid ""
|
||||
"``odm_texturing/odm_textured_model.obj`` -- The textured surface mesh "
|
||||
"``odm_texturing/odm_textured_model_geo.obj`` -- The georeferenced and "
|
||||
"textured surface mesh"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:24
|
||||
msgid ""
|
||||
"You can access the point cloud and textured meshes using MeshLab. Open "
|
||||
"MeshLab, and choose File:Import Mesh and choose your textured mesh from a"
|
||||
" location similar to the following: "
|
||||
"``odm_texturing\\odm_textured_model.obj``"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:30
|
||||
msgid ""
|
||||
"*Textured mesh courtesy of* `OpenDroneMap "
|
||||
"<https://twitter.com/opendronemap>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:33
|
||||
msgid "Orthophoto"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:35
|
||||
msgid ""
|
||||
"``odm_orthophoto/odm_orthphoto.png`` -- The orthophoto, but this is a "
|
||||
"simple png, which doesn't have any georeferencing information"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:37
|
||||
msgid ""
|
||||
"``odm_orthophoto/odm_orthphoto.tif`` -- GeoTIFF Orthophoto. You can use "
|
||||
"it in QGIS as a raster layer."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:43
|
||||
msgid ""
|
||||
"*Orthophoto over State University Zanzibar, courtesy of* `Khadija "
|
||||
"Abdullah Ali <https://www.linkedin.com/in/khadija-abdulla-ali-"
|
||||
"56b4044a/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:46
|
||||
msgid "DTM/DSM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:48
|
||||
msgid ""
|
||||
"DTM/DSM will only be created if the ``--dtm`` or ``--dsm`` options are "
|
||||
"used. See `tutorial on elevation models "
|
||||
"<https://docs.opendronemap.org/tutorials.html#creating-digital-elevation-"
|
||||
"models>`_ for more options in creating."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:50
|
||||
msgid "Data will be stored in:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:52
|
||||
msgid "``odm_dem/dtm.tif``"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:53
|
||||
msgid "``odm_dem/dsm.tif``"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:59
|
||||
msgid ""
|
||||
"*Digital surface model over State University Zanzibar, courtesy of* "
|
||||
"`Khadija Abdullah Ali <https://www.linkedin.com/in/khadija-abdulla-ali-"
|
||||
"56b4044a/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:62
|
||||
msgid "List of all outputs"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:109
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/outputs.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "*Textured mesh over State University "
|
||||
#~ "Zanzibar, courtesy of* `Khadija Abdullah "
|
||||
#~ "Ali <https://www.linkedin.com/in/khadija-abdulla-"
|
||||
#~ "ali-56b4044a/>`_"
|
||||
#~ msgstr ""
|
||||
|
|
@ -1,92 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/requesting-features.rst:2
|
||||
msgid "How To Request Features"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:4
|
||||
msgid ""
|
||||
"All software needs user feedback and feature requests, to grow and "
|
||||
"maintain alignment with the needs of its users."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:7
|
||||
msgid ""
|
||||
"OpenDroneMap is FOSS software. Free and open source (FOSS) projects are "
|
||||
"interesting from the inside and outside: from the outside, successful "
|
||||
"ones feel like they should be able to do anything, and it’s hard to know "
|
||||
"what a reasonable request is. From the inside of a project, they can feel"
|
||||
" very resource constrained: largely by time, money, and opportunity "
|
||||
"overload."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:13
|
||||
msgid ""
|
||||
"A feature request can be submitted as issues on the applicable Github "
|
||||
"repository (e.g., `WebODM "
|
||||
"<https://github.com/OpenDroneMap/WebODM/issues>`_ or `ODM "
|
||||
"<https://github.com/OpenDroneMap/ODM/issues>`_ or similar) or more simply"
|
||||
" as a discussion topic on `the community forum "
|
||||
"<https://community.opendronemap.org/>`_. Try to start by searching these "
|
||||
"sources to see if someone else has already brought it up. Sometimes a "
|
||||
"feature is already in the works, or has at least been discussed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:19
|
||||
msgid ""
|
||||
"And importantly, the trick is to listen: if someone within the project "
|
||||
"says: \"This is a big lift, we need MONEY or TIME or SOMEONE TO HELP CODE"
|
||||
" IT\" (or possibly a combination of the three) then there are two answers"
|
||||
" that work really well in response:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:23
|
||||
msgid ""
|
||||
"*Ok. I didn’t know it was a big feature request! I hope someone comes "
|
||||
"along with the necessary resources. As a community member, I would be "
|
||||
"happy to be an early user and tester!*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:25
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:27
|
||||
msgid ""
|
||||
"*Let’s figure out if we can put together the resources to get this done! "
|
||||
"Here’s what I can contribute toward it: …*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:29
|
||||
msgid ""
|
||||
"We are glad you are excited to see new features added to the project. "
|
||||
"Some new features need support, and some are easier to implement. We'll "
|
||||
"do our best to help you understand where your request falls, and we "
|
||||
"appreciate any support you can provide."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:33
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/requesting-"
|
||||
"features.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:01+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/resources.rst:2
|
||||
msgid "Additional References"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:5
|
||||
msgid "For Users"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:7
|
||||
msgid "The following resources are a good place to start:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:9
|
||||
msgid "`README page for ODM <https://github.com/OpenDroneMap/OpenDroneMap>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:10
|
||||
msgid "`README page for WebODM <https://github.com/OpenDroneMap/WebODM>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:11
|
||||
msgid ""
|
||||
"`README page for NodeODM <https://github.com/OpenDroneMap/node-"
|
||||
"OpenDroneMap>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:12
|
||||
msgid ""
|
||||
"`Ground Control Points Format Specification "
|
||||
"<https://github.com/mapillary/OpenSfM/blob/master/doc/source/gcp.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:13
|
||||
msgid "`OpenDroneMap: The Missing Guide <https://odmbook.com/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:16
|
||||
msgid "For Developers"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:18
|
||||
msgid "In addition to user resources, we recommend to also read the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:20
|
||||
msgid "WebODM documentation: https://docs.webodm.org"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:21
|
||||
msgid ""
|
||||
"NodeODM API specification: "
|
||||
"https://github.com/OpenDroneMap/NodeODM/blob/master/docs/index.adoc"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:22
|
||||
msgid ""
|
||||
"Overview of the ODM pipeline: http://community.opendronemap.org/t/where-"
|
||||
"can-i-find-background-information-on-the-concepts-of-odm/665/2"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:23
|
||||
msgid ""
|
||||
"We keep a `section in our forum dedicated to research papers "
|
||||
"<http://community.opendronemap.org/c/ideas-proposals/research-papers>`_. "
|
||||
"This is a valuable place where to read more about state of the art "
|
||||
"research related to structure from motion, multi-view stereo, meshing, "
|
||||
"texturing, etc. which can be used to improve the software."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:26
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/api.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,815 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/tutorials.rst:5
|
||||
msgid "Tutorials"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:7
|
||||
msgid "Below you will find instructions for some common use cases."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:11
|
||||
msgid "Creating High Quality Orthophotos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:17
|
||||
msgid ""
|
||||
"Without any parameter tweaks, ODM chooses a good compromise between "
|
||||
"quality, speed and memory usage. If you want to get higher quality "
|
||||
"results, you need to tweak some parameters:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:19
|
||||
msgid ""
|
||||
"``--orthophoto-resolution`` is the resolution of the orthophoto in "
|
||||
"cm/pixel. Decrease this value for a higher resolution result."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:20
|
||||
msgid ""
|
||||
"``--ignore-gsd`` is a flag that instructs ODM to skip certain memory and "
|
||||
"speed optimizations that directly affect the orthophoto. Using this flag "
|
||||
"will increase runtime and memory usage, but may produce sharper results."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:21
|
||||
msgid ""
|
||||
"``--texturing-nadir-weight`` should be increased to ``29-32`` in urban "
|
||||
"areas to reconstruct better edges of roofs. It should be decreased to "
|
||||
"``0-6`` in grassy / flat areas."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:22
|
||||
msgid "``--texturing-data-term`` should be set to `area` in forest areas."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:23
|
||||
msgid ""
|
||||
"``--mesh-size`` should be increased to `300000-600000` and `--mesh-"
|
||||
"octree-depth`` should be increased to `10-11` in urban areas to recreate "
|
||||
"better buildings / roofs."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:27
|
||||
msgid "Calibrating the Camera"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:29
|
||||
msgid ""
|
||||
"Camera calibration is a special challenge with commodity cameras. "
|
||||
"Temperature changes, vibrations, focus, and other factors can affect the "
|
||||
"derived parameters with substantial effects on resulting data. Automatic "
|
||||
"or self calibration is possible and desirable with drone flights, but "
|
||||
"depending on the flight pattern, automatic calibration may not remove all"
|
||||
" distortion from the resulting products. James and Robson (2014) in their"
|
||||
" paper `Mitigating systematic error in topographic models derived from "
|
||||
"UAV and ground‐based image networks "
|
||||
"<https://onlinelibrary.wiley.com/doi/full/10.1002/esp.3609>`_ address how"
|
||||
" to minimize the distortion from self-calibration."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:35
|
||||
msgid ""
|
||||
"*Bowling effect on point cloud over 13,000+ image dataset collected by "
|
||||
"World Bank Tanzania over the flood prone Msimbasi Basin, Dar es Salaam, "
|
||||
"Tanzania.*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:37
|
||||
msgid ""
|
||||
"To mitigate this effect, there are a few options but the simplest are as "
|
||||
"follows: fly two patterns separated by 20°, and rather than having a "
|
||||
"nadir (straight down pointing) camera, use one that tilts forward by 5°."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:45
|
||||
msgid ""
|
||||
"As this approach to flying can be take longer than typical flights, a "
|
||||
"pilot or team can fly a small area using the above approach. OpenDroneMap"
|
||||
" will generate a calibration file called cameras.json that then can be "
|
||||
"imported to be used to calibrate another flight that is more efficiently "
|
||||
"flown."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:47
|
||||
msgid ""
|
||||
"Alternatively, the following experimental method can be applied: fly with"
|
||||
" much lower overlap, but two *crossgrid* flights (sometimes called "
|
||||
"crosshatch) separated by 20° with a 5° forward facing camera."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:49
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Crossgrid overlap percentages can be lower than parallel flights. To get "
|
||||
"good 3D results, you will require 68% overlap and sidelap for an "
|
||||
"equivalent 83% overlap and sidelap."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:50
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To get good 2D and 2.5D (digital elevation model) results, you will "
|
||||
"require 42% overlap and sidelap for an equivalent 70% overlap and "
|
||||
"sidelap."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:56
|
||||
msgid ""
|
||||
"Vertically separated flight lines also improve accuracy, but less so than"
|
||||
" a camera that is forward facing by 5°."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:62
|
||||
msgid ""
|
||||
"From James and Robson (2014), `CC BY 4.0 "
|
||||
"<https://creativecommons.org/licenses/by/4.0>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:66
|
||||
msgid "Creating Digital Elevation Models"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:68
|
||||
msgid ""
|
||||
"By default ODM does not create DEMs. To create a digital terrain model, "
|
||||
"make sure to pass the ``--dtm`` flag. To create a digital surface model, "
|
||||
"be sure to pass the ``--dsm`` flag."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:74
|
||||
msgid ""
|
||||
"For DTM generation, a Simple Morphological Filter (smrf) is used to "
|
||||
"classify points in ground vs. non-ground and only the ground points are "
|
||||
"used. The ``smrf`` filter can be controlled via several parameters:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:76
|
||||
msgid ""
|
||||
"``--smrf-scalar`` scaling value. Increase this parameter for terrains "
|
||||
"with lots of height variation."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:77
|
||||
msgid ""
|
||||
"``--smrf-slope`` slope parameter, which is a measure of \"slope "
|
||||
"tolerance\". Increase this parameter for terrains with lots of height "
|
||||
"variation. Should be set to something higher than 0.1 and not higher than"
|
||||
" 1.2."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:78
|
||||
msgid ""
|
||||
"``--smrf-threshold`` elevation threshold. Set this parameter to the "
|
||||
"minimum height (in meters) that you expect non-ground objects to be."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:79
|
||||
msgid ""
|
||||
"``--smrf-window`` window radius parameter (in meters) that corresponds to"
|
||||
" the size of the largest feature (building, trees, etc.) to be removed. "
|
||||
"Should be set to a value higher than 10."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:81
|
||||
msgid ""
|
||||
"Changing these options can affect the result of DTMs significantly. The "
|
||||
"best source to read to understand how the parameters affect the output is"
|
||||
" to read the original paper `An improved simple morphological filter for "
|
||||
"the terrain classification of airborne LIDAR data "
|
||||
"<https://www.researchgate.net/publication/258333806_An_Improved_Simple_Morphological_Filter_for_the_Terrain_Classification_of_Airborne_LIDAR_Data>`_"
|
||||
" (PDF freely available)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:83
|
||||
msgid "Overall the ``--smrf-threshold`` option has the biggest impact on results."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:85
|
||||
msgid ""
|
||||
"SMRF is good at avoiding Type I errors (small number of ground points "
|
||||
"mistakenly classified as non-ground) but only \"acceptable\" at avoiding "
|
||||
"Type II errors (large number non-ground points mistakenly classified as "
|
||||
"ground). This needs to be taken in consideration when generating DTMs "
|
||||
"that are meant to be used visually, since objects mistaken for ground "
|
||||
"look like artifacts in the final DTM."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:91
|
||||
msgid "Two other important parameters affect DEM generation:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:93
|
||||
msgid ""
|
||||
"``--dem-resolution`` which sets the output resolution of the DEM raster "
|
||||
"(cm/pixel)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:94
|
||||
msgid ""
|
||||
"``--dem-gapfill-steps`` which determines the number of progressive DEM "
|
||||
"layers to use. For urban scenes increasing this value to `4-5` can help "
|
||||
"produce better interpolation results in the areas that are left empty by "
|
||||
"the SMRF filter."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:96
|
||||
msgid "Example of how to generate a DTM::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:102
|
||||
msgid "Using Docker"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:104
|
||||
msgid ""
|
||||
"Since many users employ docker to deploy OpenDroneMap, it can be useful "
|
||||
"to understand some basic commands in order to interrogate the docker "
|
||||
"instances when things go wrong, or we are curious about what is "
|
||||
"happening. Docker is a containerized environment intended, among other "
|
||||
"things, to make it easier to deploy software independent of the local "
|
||||
"environment. In this way, it is similar to virtual machines."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:106
|
||||
msgid "A few simple commands can make our docker experience much better."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:109
|
||||
msgid "Listing Docker Machines"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:111
|
||||
msgid ""
|
||||
"We can start by listing available docker machines on the current machine "
|
||||
"we are running as follows:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:120
|
||||
msgid ""
|
||||
"If we want to see machines that may not be running but still exist, we "
|
||||
"can add the `-a` flag:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:133
|
||||
msgid "Accessing logs on the instance"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:135
|
||||
msgid ""
|
||||
"Using either the `CONTAINER ID` or the name, we can access any logs "
|
||||
"available on the machine as follows:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:141
|
||||
msgid ""
|
||||
"This is likely to be unwieldy large, but we can use a pipe `|` character "
|
||||
"and other tools to extract just what we need from the logs. For example "
|
||||
"we can move through the log slowly using the `more` command:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:157
|
||||
msgid ""
|
||||
"Pressing `Enter` or `Space`, arrow keys or `Page Up` or `Page Down` keys "
|
||||
"will now help us navigate through the logs. The lower case letter `Q` "
|
||||
"will let us escape back to the command line."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:159
|
||||
msgid ""
|
||||
"We can also extract just the end of the logs using the `tail` commmand as"
|
||||
" follows:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:170
|
||||
msgid ""
|
||||
"The value `-5` tells the tail command to give us just the last 5 lines of"
|
||||
" the logs."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:173
|
||||
msgid "Command line access to instances"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:175
|
||||
msgid ""
|
||||
"Sometimes we need to go a little deeper in our exploration of the process"
|
||||
" for OpenDroneMap. For this, we can get direct command line access to the"
|
||||
" machines. For this, we can use `docker exec` to execute a `bash` command"
|
||||
" line shell in the machine of interest as follows:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:179
|
||||
msgid "::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:178
|
||||
msgid "> docker exec -ti 2518817537ce bash root@2518817537ce:/code#"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:181
|
||||
msgid "Now we are logged into our docker instance and can explore the machine."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:184
|
||||
msgid "Cleaning up after Docker"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:186
|
||||
msgid ""
|
||||
"Docker has a lamentable use of space and by default does not clean up "
|
||||
"excess data and machines when processes are complete. This can be "
|
||||
"advantageous if we need to access a process that has since terminated, "
|
||||
"but carries the burden of using increasing amounts of storage over time. "
|
||||
"Maciej Łebkowski has an `excellent overview of how to manage excess disk "
|
||||
"usage in docker <https://lebkowski.name/docker-volumes/>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:190
|
||||
msgid "Using ODM from low-bandwidth location"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:193
|
||||
msgid "What is this and who is it for?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:195
|
||||
msgid "Via Ivan Gayton's: [repo](https://github.com/ivangayton/GDAL_scripts/)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:197
|
||||
msgid ""
|
||||
"`OpenDroneMap <https://www.opendronemap.org/>`__ can’t always be "
|
||||
"effectively set up locally—it takes a fairly powerful machine to process "
|
||||
"large datasets—so a cloud machine can sometimes be the answer for people "
|
||||
"in the field. However, bandwidth is a problem in many low-income "
|
||||
"settings. This constraint can’t be solved completely, but the following "
|
||||
"method does a reasonable job of reducing the bandwidth needed to process "
|
||||
"drone imagery datasets on the cloud from African locations."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:205
|
||||
msgid ""
|
||||
"Here we present a tricky but workable process to create an OpenDroneMap "
|
||||
"cloud machine (*not* CloudODM, mind you, just a cloud-based instance of "
|
||||
"ODM that you run from the command line) and use it to remotely process "
|
||||
"large photo sets. It requires familiarity with Unix command line use, "
|
||||
"ssh, a Digital Ocean account (Amazon AWS would work as well, possibly "
|
||||
"with slight differences in the setup), and a moderate level of general "
|
||||
"computer literacy. If you aren’t fairly computer-savvy and willing to "
|
||||
"fuss with a slightly tricky setup, `CloudODM "
|
||||
"<https://www.opendronemap.org/cloudodm/>`__ is what you should be looking"
|
||||
" at."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:216
|
||||
msgid ""
|
||||
"The whole process is mostly targeted at someone flying substantial "
|
||||
"missions in an African or similar location looking to process data ASAP "
|
||||
"while still in a field setting. Therefore it emphasizes a workflow "
|
||||
"intended to reduce bandwidth/data transfer, rather than just the simplest"
|
||||
" way of running ODM."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:223
|
||||
msgid "Steps"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:226
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:228
|
||||
msgid ""
|
||||
"Create a Digital Ocean droplet with at least 4GB of RAM. That’ll cost "
|
||||
"about $20/month. Less than 4GB of RAM and the install will probably fail."
|
||||
" When we actually run the ODM process we’ll resize it to a much "
|
||||
"larger—and more expensive—cloud machine, but between runs you can "
|
||||
"downsize it between runs to the second-cheapest droplet which costs only "
|
||||
"$10/month (the cheapest droplet, at $5/month, comes with such a small "
|
||||
"drive that you can’t downsize back to it)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:236
|
||||
msgid "Should be an Ubuntu 16.04 instance to ensure dependency compatibility"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:238
|
||||
msgid ""
|
||||
"Create a user with sudo privileges. `Digital Ocean’s insanely good "
|
||||
"documentation <https://www.digitalocean.com/community/tutorials/initial-"
|
||||
"server-setup-with-ubuntu-16-04>`__ can help you figure this out. In our "
|
||||
"case we set up a user called ``odm``, so connecting to it is via the "
|
||||
"command ``ssh odm@xxx.xxx.xxx.xxx`` (where the x’s stand for the IPv4 "
|
||||
"address of your server). If you want to follow this example closely, *do*"
|
||||
" use the username ``odm``; then your install path will be "
|
||||
"``/home/odm/ODM/`` and will match all of the examples in this document. "
|
||||
"-When you log into the server, it will offer you the option to upgrade to"
|
||||
" Ubuntu 18.04, a more recent version. Don’t. ODM native install doesn’t "
|
||||
"work smoothly on 18.04. Go ahead and execute ``sudo apt update`` and "
|
||||
"``sudo apt upgrade`` to ensure your server isn’t dangerously without "
|
||||
"updates, but stay with Ubuntu 16.04."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:253
|
||||
msgid ""
|
||||
"Download and install ODM on it from the `ODM Github "
|
||||
"<https://github.com/OpenDroneMap/ODM>`__ (regular, not WebODM) with the "
|
||||
"following commands:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:263
|
||||
msgid ""
|
||||
"If you do this from the default home folder of your user (i.e. ``odm``) "
|
||||
"the path to the install will be ``/home/odm/ODM`` (abbreviated as "
|
||||
"``~/ODM/``)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:266
|
||||
msgid ""
|
||||
"There are some environmental variables that need to be set. Open the "
|
||||
"~/.bashrc file on your machine and add the following 3 lines at the end "
|
||||
"(From `the ODM github <https://github.com/OpenDroneMap/ODM>`__). The file"
|
||||
" can be opened with ``nano ~/.bashrc`` (or whatever text editor you use "
|
||||
"in lieu of nano). Be sure to replace ``/home/odm/`` with the correct path"
|
||||
" to the location where you extracted OpenDroneMap if you didn’t do "
|
||||
"everything exactly as in our example (for example if you used a different"
|
||||
" username in your server setup):"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:281
|
||||
msgid ""
|
||||
"Note that the ODM github readme contains a slight error, the install "
|
||||
"directory name will be ODM, not OpenDroneMap (you’ll see this if you "
|
||||
"compare the above instructions to the ones on the ODM GitHub)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:285
|
||||
msgid ""
|
||||
"In order to prevent a crash wherein the split-merge process fails to "
|
||||
"locate its own executable, we add the following lines to ``~/.bashrc`` "
|
||||
"(adjust paths if you’ve set things up differently from our example):"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:295
|
||||
msgid ""
|
||||
"Now you’ll need a second cloud hard drive (a “Volume” in Digital Ocean "
|
||||
"jargon) big enough to manage your project. Rule of thumb seems to be 10 "
|
||||
"times the size of your raw image set; we’ve got a 100GB image set and set"
|
||||
" up a 1000GB volume (once the run is done you should be able to get rid "
|
||||
"of most of this expensive drive capacity, but it’s needed to complete the"
|
||||
" process). Set up the volume, attach it to your droplet, and `configure "
|
||||
"its mount point <https://www.digitalocean.com/docs/volumes/how-"
|
||||
"to/mount/>`__ (in this example we’re setting it to ``/mnt/odmdata/``)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:306
|
||||
msgid "Prep data and project"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:308
|
||||
msgid ""
|
||||
"Now push your images onto the server. You can use `Secure Copy (scp) "
|
||||
"<https://en.wikipedia.org/wiki/Secure_copy>`__ like so: ``scp -r "
|
||||
"/path/to/my/imagefolder odm@xxx.xxx.xxx.xxx:/mnt/odmdata/``."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:312
|
||||
msgid ""
|
||||
"This pushes the entire folder full of images (that’s what the ``-r`` "
|
||||
"option does, “recursive”) into the remote location (in our example, into "
|
||||
"the volume we attached to the cloud machine at ``/mnt/odmdata/``."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:316
|
||||
msgid ""
|
||||
"This will take some bandwidth. No way around the size of the files.\\ `1 "
|
||||
"<#footnote1>`__, \\ `2 <#footnote2>`__\\"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:320
|
||||
msgid "Directory structure"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:322
|
||||
msgid ""
|
||||
"ODM requires the directories on the machine to be set up just so. The "
|
||||
"critical bits are the install folder (if you installed as above, it’s "
|
||||
"``/home/odm/ODM/``) and the project folder (i.e. "
|
||||
"``/mnt/odmdata/myproject/``)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:327
|
||||
msgid ""
|
||||
"ODM’s settings.yaml file specifies a single parent directory containing "
|
||||
"all projects. This is what goes in the project path line of the "
|
||||
"settings.yaml file (slightly confusingly, this is actually the *parent* "
|
||||
"directory of the individual project directories, which are specified by "
|
||||
"the project name parameter when calling ODM). Edit settings.yaml and set "
|
||||
"the project_path parameter to (as per our example setup) "
|
||||
"``/mnt/odmdata/``, which in this case points to the Volume we created. "
|
||||
"Individual project directories are created within that."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:336
|
||||
msgid ""
|
||||
"Individual project directories, i.e. ``/mnt/odmdata/myproject/`` contain "
|
||||
"the gcp_list.txt file, the image_groups.txt file, and the images folder "
|
||||
"for each project``\\`"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:339
|
||||
msgid ""
|
||||
"The images folder, i.e. ``/mnt/odmdata/myproject/images/`` contains all "
|
||||
"of the images. If you set it up like this, the images don’t get re-copied"
|
||||
" because they’re already in the directory that ODM wants them in."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:343
|
||||
msgid ""
|
||||
"If you’ve got images with GPS info on them (as from an Ebee), use "
|
||||
"exiftool to massage the GPS information ``exiftool "
|
||||
"\"-GPSDOP<GPSZAccuracy\" .``.\\ `3 <#footnote3>`__\\ To do so you’ll "
|
||||
"need to install exiftool. The command for that is probably ``sudo apt "
|
||||
"install libimage-exiftool-perl``."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:348
|
||||
msgid ""
|
||||
"Modify settings.yaml to specify the parent directory of the project "
|
||||
"folder (in this case the Volume we created, ``/mnt/odmdata/``). Make sure"
|
||||
" the images are in the correct spot, i.e. "
|
||||
"``/mnt/odmdata/myproject/images`` and the other ancillary files "
|
||||
"(gcp_list.txt and image_groups.txt) are in the root folder "
|
||||
"``/mnt/odmdata/myproject/``"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:354
|
||||
msgid ""
|
||||
"if you have the images in separate folders for individual AOI blocks or "
|
||||
"flights (which you will if your flight management was organized), you can"
|
||||
" create an image_groups.txt file with the incantations ``for i in *; do "
|
||||
"cd $i; for j in *; do echo \"$j $i\" >> ../$i.txt; done; cd ../; done;`` "
|
||||
"and ``cd ../``, ``for i in myproject/*.txt; do cat $i >> "
|
||||
"image_groups.txt; done;``. That should create a file with the correct "
|
||||
"structure: a list of all image files and a “group name” after each one "
|
||||
"(which in this case will simply be the name of the folder it came from). "
|
||||
"Then move all of the image files into a single directory called images in"
|
||||
" the project root dir (so ``/mnt/odmdata/myproject/images/``). The "
|
||||
"image_groups.txt file will allow ODM to keep track of which images belong"
|
||||
" to the same batch, even though they’re all in a single directory."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:370
|
||||
msgid "Resize droplet, pull pin, run away"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:372
|
||||
msgid ""
|
||||
"Shut down and resize your machine to an appropriately monstrous number of"
|
||||
" CPUs and amount of memory. I use the memory-optimized machine with 24 "
|
||||
"dedicated vCPUs and 192GB of RAM (which costs about $1.60/hr—which adds "
|
||||
"up fast, it’s over $1000/month). Restart, and get to work quickly so as "
|
||||
"not to waste expensive big-droplet time."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:377
|
||||
msgid ""
|
||||
"Launch the ODM process via ssh using nohup (so that if you’re cut off, "
|
||||
"processing will continue)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:380
|
||||
msgid ""
|
||||
"Alternately you can use GNU screen to launch the process from a screen "
|
||||
"session which won’t stop if your connection is interrupted; launch "
|
||||
"``screen``, and use ``<ctrl> a <ctrl> d`` to detach, ``screen -r`` to re-"
|
||||
"attach. But using screen won’t get you a log file of all of the console "
|
||||
"output unless you do something specific to capture that, while nohup "
|
||||
"gives you a file with all of the console output, including error "
|
||||
"messages, for free."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:387
|
||||
msgid ""
|
||||
"Note: as of 2020-03 the normal incantation ``python run.py -i "
|
||||
"/path/to/image/folder project_name`` seems *not* to work; the ``-i`` or "
|
||||
"``--image`` parameter causes a weird error. So we drop the -i parameter, "
|
||||
"and rely on the project directory line in the settings.yaml file to "
|
||||
"direct ODM to the right place. Now using (including a split-merge):"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:398
|
||||
msgid ""
|
||||
"This points ODM at the folder (in this example) "
|
||||
"``/mnt/odmdata/myproject/``. Provided the image_groups.txt and "
|
||||
"gcp_list.txt are in this folder, the images are in "
|
||||
"``/mnt/odmdata/myproject/images/``, and the project path in settings.yaml"
|
||||
" is ``/mnt/odmdata/`` it will not waste time and space copying images."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:405
|
||||
msgid ""
|
||||
"Note that this assumes you have an image_groups.txt file. If not, this "
|
||||
"``-split-overlap 0`` will probably fuck things up, and the ``--split 1`` "
|
||||
"is literally a random number that will be ignored after the "
|
||||
"image_groups.txt file is loaded (I think it normally controls how many "
|
||||
"groups it splits a set of images into, but in our case we’re assuming the"
|
||||
" images are already grouped sensibly). If you don’t have a large dataset "
|
||||
"(>1000 images), omit the ``--split`` and ``--split-overlap`` options."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:414
|
||||
msgid "Follow the progress using tail (so that you’ll know when it’s done)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:420
|
||||
msgid ""
|
||||
"You may want to keep an eye on htop (to get a sense of the resource usage"
|
||||
" so that in future you can only spin up a machine as large as necessary)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:425
|
||||
msgid "After it finishes (assuming you survive that long)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:427
|
||||
msgid ""
|
||||
"As soon as processing is done, shut down the machine and resize it back "
|
||||
"down to the inexpensive minimum capacity."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:429
|
||||
msgid "Start the machine back up, and log in via ssh."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:430
|
||||
msgid ""
|
||||
"If you want to save download bandwidth, you can compress the orthophoto "
|
||||
"using GDAL. Don’t add overviews, do that on your local machine to avoid "
|
||||
"making the file bigger before downloading it."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:438
|
||||
msgid ""
|
||||
"Download using scp: ``scp "
|
||||
"odm@xxx.xxx.xxx.xxx:/mnt/odmdata/myproject/odm_orthophoto/odm_orthophoto.tif``"
|
||||
" (or grab the compressed version you created in the last step)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:442
|
||||
msgid ""
|
||||
"Once you get the file on your local computer, you can use QGIS to add "
|
||||
"overviews (“pyramids”) or use the GDAL command ``gdaladdo -r average "
|
||||
"/path/to/image.tif 2 4 8 16 32 64 128 256 512 1024``."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:446
|
||||
msgid ""
|
||||
"You can archive the odm_texturing, odm_georeferencing, and odm-dem "
|
||||
"folders using tar to make them easier to download in one piece (and maybe"
|
||||
" smaller)."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "``--ignore-gsd`` is a flag that "
|
||||
#~ "instructs ODM to skip certain memory "
|
||||
#~ "and speed optimizations that directly "
|
||||
#~ "affect the orthophoto. Using this flag"
|
||||
#~ " will increase runtime and memory "
|
||||
#~ "usage, but will produce sharper results."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Ground Control Points"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Ground control points are useful for "
|
||||
#~ "correcting distortions in the data and"
|
||||
#~ " referencing the data to know "
|
||||
#~ "coordinate systems."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "The format of the GCP file is simple."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The header line is a description "
|
||||
#~ "of a UTM coordinate system, which "
|
||||
#~ "must be written as a proj4 string."
|
||||
#~ " http://spatialreference.org/ is a good "
|
||||
#~ "resource for finding that information. "
|
||||
#~ "Please note that currently angular "
|
||||
#~ "coordinates (like lat/lon) DO NOT work."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Subsequent lines are the X, Y &"
|
||||
#~ " Z coordinates, your associated pixels "
|
||||
#~ "and the image filename:"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "GCP file format::"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "e.g. for the Langley dataset::"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "If you supply a GCP file called"
|
||||
#~ " gcp_list.txt then ODM will automatically"
|
||||
#~ " detect it. If it has another "
|
||||
#~ "name you can specify using ``--gcp "
|
||||
#~ "<path>``. If you have a gcp file"
|
||||
#~ " and want to do georeferencing with"
|
||||
#~ " exif instead, then you can specify"
|
||||
#~ " ``--use-exif``."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "`This post has some information about"
|
||||
#~ " placing Ground Control Targets before "
|
||||
#~ "a flight <http://diydrones.com/profiles/blogs/ground-"
|
||||
#~ "control-points-gcps-for-aerial-"
|
||||
#~ "photography>`_, but if you already have"
|
||||
#~ " images, you can find your own "
|
||||
#~ "points in the images post facto. "
|
||||
#~ "It's important that you find high-"
|
||||
#~ "contrast objects that are found in "
|
||||
#~ "**at least** 3 photos, and that "
|
||||
#~ "you find a minimum of 5 objects."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Sharp corners are good picks for "
|
||||
#~ "GCPs. You should also place/find the "
|
||||
#~ "GCPs evenly around your survey area."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The ``gcp_list.txt`` file must be "
|
||||
#~ "created in the base of your "
|
||||
#~ "project folder."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "For good results your file should "
|
||||
#~ "have a minimum of 15 lines after"
|
||||
#~ " the header (5 points with 3 "
|
||||
#~ "images to each point)."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Ground Control Points Interface"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "WebODM has a GCP interface, and "
|
||||
#~ "example of which can be seen on"
|
||||
#~ " `the WebODM Demo <http://demo.webodm.org/plugins"
|
||||
#~ "/posm-gcpi/>`_. To use this with "
|
||||
#~ "known ground control XYZ values, one "
|
||||
#~ "would do the following:"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Create a GCP list that only "
|
||||
#~ "includes gcp name (this is the "
|
||||
#~ "label that will be seen in the "
|
||||
#~ "GCP interface), x, y, and z, with"
|
||||
#~ " a header with a proj4 string "
|
||||
#~ "of your GCPs (make sure they are"
|
||||
#~ " in a planar coordinate system, such"
|
||||
#~ " as UTM. It should look something "
|
||||
#~ "like this:"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Then one can load this GCP list"
|
||||
#~ " into the interface, load the images,"
|
||||
#~ " and place each of the GCPs in"
|
||||
#~ " the image."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "`Help edit these docs! "
|
||||
#~ "<https://github.com/OpenDroneMap/docs/blob/publish/source/using.rst>`_"
|
||||
#~ msgstr ""
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:01+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/arguments.rst:4
|
||||
msgid "Options and Flags"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/arguments.rst:6
|
||||
msgid "Arguments::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/arguments.rst:289
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/using.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,196 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/contributing.rst:4
|
||||
msgid "How To Contribute"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:6
|
||||
msgid ""
|
||||
"OpenDroneMap relies on community contributions. You can contribute in "
|
||||
"many ways, even if you are not a programmer."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:9
|
||||
msgid "Community Forum"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:11
|
||||
msgid ""
|
||||
"If you are looking to get involved, are stuck on a problem, or want to "
|
||||
"reach out, `the forum <https://community.opendronemap.org/>`_ is a great "
|
||||
"place to start. You may find your questions already answered or else you "
|
||||
"can find other useful tips and resources. You can also contribute your "
|
||||
"open access datasets for others to explore. It is a good place go before "
|
||||
"submitting bug reports or getting in touch with developers before writing"
|
||||
" a new feature."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:14
|
||||
msgid "Reporting Bugs"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:16
|
||||
msgid ""
|
||||
"Bugs are tracked as Github issues. Please create an issue in the "
|
||||
"repository and tag it with the Bug tag."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:18
|
||||
msgid ""
|
||||
"Explain the problem and include additional details to help maintainers "
|
||||
"reproduce the problem:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:20
|
||||
msgid ""
|
||||
"**Use a clear and descriptive title** for the issue to identify the "
|
||||
"problem."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:21
|
||||
msgid ""
|
||||
"**Describe the exact steps which reproduce the problem** in as many "
|
||||
"details as possible. For example, start by explaining how you run ODM "
|
||||
"(Docker, Vagrant, etc), e.g. which command exactly you used in the "
|
||||
"terminal. When listing steps, **don't just say what you did, but explain "
|
||||
"how you did it.**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:22
|
||||
msgid ""
|
||||
"**Provide specific examples to demonstrate the steps.** Include links to "
|
||||
"files or GitHub projects, or copy/pasteable snippets, which you use in "
|
||||
"those examples. If you're providing snippets in the issue, use `Markdown "
|
||||
"code blocks <https://help.github.com/articles/markdown-basics/#multiple-"
|
||||
"lines>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:23
|
||||
msgid ""
|
||||
"**Describe the behavior you observed after following the steps** and "
|
||||
"point out what exactly is the problem with that behavior."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:24
|
||||
msgid "**Explain which behavior you expected to see instead and why.**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:25
|
||||
msgid ""
|
||||
"**Include screenshots and animated GIFs** which show you following the "
|
||||
"described steps and clearly demonstrate the problem. You can use `this "
|
||||
"tool to record GIFs on macOS and Windows "
|
||||
"<http://www.cockos.com/licecap/>`_, and `this tool "
|
||||
"<https://github.com/colinkeenan/silentcast>`_ or `this one "
|
||||
"<https://github.com/GNOME/byzanz>`_ on Linux."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:26
|
||||
msgid ""
|
||||
"**If the problem is related to performance,** please post your machine's "
|
||||
"specs (host and guest machine)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:27
|
||||
msgid ""
|
||||
"**If the problem wasn't triggered by a specific action,** describe what "
|
||||
"you were doing before the problem happened and share more information "
|
||||
"using the guidelines below."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:29
|
||||
msgid "Include details about your configuration and environment:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:31
|
||||
msgid ""
|
||||
"**Which version of ODM are you using?** A stable release? a clone of "
|
||||
"master?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:32
|
||||
msgid "**What's the name and version of the OS you're using?**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:33
|
||||
msgid ""
|
||||
"**Are you running ODM in a virtual machine or Docker?** If so, which VM "
|
||||
"software are you using and which operating systems and versions are used "
|
||||
"for the host and the guest?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:36
|
||||
msgid "Template For Submitting Bug Reports"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:69
|
||||
msgid "Pull Requests"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:71
|
||||
msgid ""
|
||||
"Include screenshots and animated GIFs in your pull request whenever "
|
||||
"possible."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:72
|
||||
msgid "Follow the PEP8 Python Style Guide."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:73
|
||||
msgid "End files with a newline."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:76
|
||||
msgid "Avoid platform-dependent code:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:75
|
||||
msgid "Use require('fs-plus').getHomeDirectory() to get the home directory."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:76
|
||||
msgid "Use path.join() to concatenate filenames."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:77
|
||||
msgid ""
|
||||
"Use os.tmpdir() rather than /tmp when you need to reference the temporary"
|
||||
" directory."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:79
|
||||
msgid "Using a plain return when returning explicitly at the end of a function."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:79
|
||||
msgid "Not return null, return undefined, null, or undefined"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:81
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/contributing.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "How to contribute"
|
||||
#~ msgstr ""
|
||||
|
|
@ -1,78 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/flying.rst:2
|
||||
msgid "Flying Tips"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:4
|
||||
msgid ""
|
||||
"The `Humanitarian OpenStreetMap team <https://www.hotosm.org/>`_ has "
|
||||
"guidelines on `flying for UAV mapping <https://uav-"
|
||||
"guidelines.openaerialmap.org/>`_:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:6
|
||||
msgid ""
|
||||
"`Choosing the right UAV <https://uav-"
|
||||
"guidelines.openaerialmap.org/pages/05-choosing-the-right-uav/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:8
|
||||
msgid ""
|
||||
"`Choosing the right sensor <https://uav-"
|
||||
"guidelines.openaerialmap.org/pages/06-choosing-the-sensor/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:10
|
||||
msgid ""
|
||||
"`Mission preparation <https://uav-guidelines.openaerialmap.org/pages/07"
|
||||
"-preparing-for-the-uav-mission/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:12
|
||||
msgid ""
|
||||
"The guidelines are intended for drone mapping projects on islands, but "
|
||||
"have general use for all drone mappers."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:14
|
||||
msgid ""
|
||||
"See also DroneDeploy's guide on `Making Successful Maps "
|
||||
"<https://support.dronedeploy.com/docs/making-successful-maps>`_, which "
|
||||
"provides great tips on mission planning."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:16
|
||||
msgid ""
|
||||
"Finally, lens distortion is a challenge in projects requiring accurate 3D"
|
||||
" data. See our section in these docs on `Camera Calibration "
|
||||
"<tutorials.html#calibrating-the-camera>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:18
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/flying.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Flying tips"
|
||||
#~ msgstr ""
|
||||
|
|
@ -1,181 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/gcp.rst:3
|
||||
msgid "Ground Control Points"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:5
|
||||
msgid ""
|
||||
"Ground control points are useful for correcting distortions in the data "
|
||||
"and referencing the data to know coordinate systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:7
|
||||
msgid "The format of the GCP file is simple."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:9
|
||||
msgid ""
|
||||
"The first line should contain the name of the projection used for the geo"
|
||||
" coordinates. This can be specified either as a PROJ string (e.g. "
|
||||
"``+proj=utm +zone=10 +ellps=WGS84 +datum=WGS84 +units=m +no_defs``), EPSG"
|
||||
" code (e.g. ``EPSG:4326``) or as a ``WGS84 UTM <zone>[N|S]`` value (eg. "
|
||||
"``WGS84 UTM 16N``)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:10
|
||||
msgid ""
|
||||
"Subsequent lines are the X, Y & Z coordinates, your associated pixels, "
|
||||
"the image filename and optional extra fields, separated by tabs or "
|
||||
"spaces:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:11
|
||||
msgid "Elevation values can be set to \"NaN\" to indicate no value"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:12
|
||||
msgid "The 7th column (optional) typically contains the label of the GCP."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:14
|
||||
msgid "GCP file format::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:20
|
||||
msgid "Example::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:27
|
||||
msgid ""
|
||||
"If you supply a GCP file called ``gcp_list.txt`` then ODM will "
|
||||
"automatically detect it. If it has another name you can specify using "
|
||||
"``--gcp <path>``. If you have a gcp file and want to do georeferencing "
|
||||
"with exif instead, then you can specify ``--use-exif``. If you have high "
|
||||
"precision GPS measurements in your images (RTK) and want to use that "
|
||||
"information along with a gcp file, you can specify ``--force-gps``."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:29
|
||||
msgid ""
|
||||
"`This post has some information about placing Ground Control Targets "
|
||||
"before a flight <http://diydrones.com/profiles/blogs/ground-control-"
|
||||
"points-gcps-for-aerial-photography>`_, but if you already have images, "
|
||||
"you can find your own points in the images post facto. It's important "
|
||||
"that you find high-contrast objects that are found in **at least** 3 "
|
||||
"photos, and that you find a minimum of 5 objects."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:31
|
||||
msgid ""
|
||||
"Sharp corners are good picks for GCPs. You should also place/find the "
|
||||
"GCPs evenly around your survey area."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:33
|
||||
msgid ""
|
||||
"The ``gcp_list.txt`` file must be created in the base of your project "
|
||||
"folder."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:35
|
||||
msgid ""
|
||||
"For good results your file should have a minimum of 15 lines after the "
|
||||
"header (5 points with 3 images to each point)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:39
|
||||
msgid "User Interfaces"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:41
|
||||
msgid "You can use one of two user interfaces for creating GCP files:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:43
|
||||
msgid "`POSM GCPi <https://github.com/posm/posm-gcpi>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:44
|
||||
msgid "`GCP Editor Pro <https://github.com/uav4geo/GCPEditorPro>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:48
|
||||
msgid "POSM GCPi"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:50
|
||||
msgid ""
|
||||
"The POSM GCPi is loaded by default on WebODM. An example is available at "
|
||||
"`the WebODM Demo <http://demo.webodm.org/plugins/posm-gcpi/>`_. To use "
|
||||
"this with known ground control XYZ values, one would do the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:52
|
||||
msgid ""
|
||||
"Create a GCP list that only includes gcp name (this is the label that "
|
||||
"will be seen in the GCP interface), x, y, and z, with a header with a "
|
||||
"proj4 string of your GCPs (make sure they are in a planar coordinate "
|
||||
"system, such as UTM. It should look something like this:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:63
|
||||
msgid ""
|
||||
"Then one can load this GCP list into the interface, load the images, and "
|
||||
"place each of the GCPs in the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:67
|
||||
msgid "GCP Editor Pro"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:69
|
||||
msgid ""
|
||||
"This app needs to be installed separately or can be loaded as a WebODM "
|
||||
"plugin from `https://github.com/uav4geo/GCPEditorPro "
|
||||
"<https://github.com/uav4geo/GCPEditorPro>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:71
|
||||
msgid ""
|
||||
"Create a CSV file that includes the gcp name, northing, easting and "
|
||||
"elevation."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:80
|
||||
msgid ""
|
||||
"Then import the CSV from the main screen and type ``+proj=utm +zone=37 "
|
||||
"+south +ellps=WGS84 +datum=WGS84 +units=m +no_defs`` in the ``EPSG/PROJ``"
|
||||
" box."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:82
|
||||
msgid ""
|
||||
"The following screen will display a map from where to select the GCPs to "
|
||||
"tag and import the respective images."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:85
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/tutorials.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,30 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:01+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/index.rst:8
|
||||
msgid "Welcome to OpenDroneMap's documentation"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/index.rst:40
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/index.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,785 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/installation.rst:4
|
||||
msgid "Installation and Getting Started"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:6
|
||||
msgid ""
|
||||
"This section is excerpted and modified with permission from "
|
||||
"`OpenDroneMap: The Missing Guide <https://odmbook.com>`_, by Piero "
|
||||
"Toffanin."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:8
|
||||
msgid ""
|
||||
"Until recently OpenDroneMap was the term used to refer to a single "
|
||||
"command line application (what is now known as the ODM project). With "
|
||||
"the recent development of a web interface, an API and other tools, "
|
||||
"OpenDroneMap has become an ecosystem of various applications to process, "
|
||||
"analyze and display aerial data. This ecosystem is made of several "
|
||||
"components:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:14
|
||||
msgid ""
|
||||
"**ODM** is the processing engine, which can be used from the command "
|
||||
"line. It takes images as input and produces a variety of outputs, "
|
||||
"including point clouds, 3D models and orthophotos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:20
|
||||
msgid ""
|
||||
"**NodeODM** is a light-weight API built on top of ODM. It allows users "
|
||||
"and applications to access the functions of ODM over a computer network"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:26
|
||||
msgid ""
|
||||
"**WebODM** is a friendly user interface that includes a map viewer, a 3D "
|
||||
"viewer, user logins, a plugin system and many other features that are "
|
||||
"expected of modern drone mapping platforms"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:32
|
||||
msgid ""
|
||||
"**CloudODM** is a small command line client to communicate with ODM via "
|
||||
"the NodeODM API"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:38
|
||||
msgid ""
|
||||
"**PyODM** is a Python SDK for creating tasks via the NodeODM API. We "
|
||||
"cover it in more detail in the “Automated Processing With Python” chapter"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:44
|
||||
msgid ""
|
||||
"**ClusterODM** is a load balancer for connecting together multiple "
|
||||
"NodeODM instances"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:46
|
||||
msgid ""
|
||||
"ODM, NodeODM and WebODM are available on all major platforms (Windows, "
|
||||
"macOS and Linux) via a program called docker, which is required to run "
|
||||
"the software. Docker offers a way to run “containers”. Containers are "
|
||||
"packaged copies of an entire system, its software and its dependencies. "
|
||||
"These containers run within a virtual environment. On Linux this virtual "
|
||||
"environment is available from the operating system and is very efficient."
|
||||
" On macOS and Windows the containers run within a VM, so there’s a bit of"
|
||||
" a overhead. but it’s still very suitable for running the software. Once "
|
||||
"installed users do not have to worry much about docker, as it operates "
|
||||
"(almost) transparently."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:48
|
||||
msgid ""
|
||||
"Without docker it would not be possible to run ODM on Windows or macOS. "
|
||||
"On these platforms ODM cannot run natively. Future development efforts "
|
||||
"are being focused on leveraging the new Windows Subsystem for Linux (WSL)"
|
||||
" and the possibility to make a native port of all dependencies to macOS, "
|
||||
"which is going to make the installation much easier."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:50
|
||||
msgid ""
|
||||
"On Ubuntu Linux 16.04 it’s feasible to run all OpenDroneMap software "
|
||||
"natively. However, because there’s very little performance penalty for "
|
||||
"running docker on Linux and docker is straightforward to setup on this "
|
||||
"platform, we don’t recommend it. On Linux the advantages of "
|
||||
"containerization far outweigh a tiny performance penalty. With docker "
|
||||
"users also get easy one-step updates of the software, so that’s nice."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:54
|
||||
msgid "Hardware Recommendations"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:56
|
||||
msgid "The bare minimum requirements for running the software are:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:59
|
||||
msgid "64bit CPU manufactured on or after 2010"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:60
|
||||
msgid "20 GB of disk space"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:61
|
||||
msgid "4 GB RAM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:63
|
||||
msgid ""
|
||||
"No more than 100-200 images can be processed with the above "
|
||||
"specifications (the software will run out of memory). Recommended "
|
||||
"requirements are:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:65
|
||||
msgid "Latest Generation CPU"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:66
|
||||
msgid "100 GB of disk space"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:67
|
||||
msgid "16 GB RAM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:69
|
||||
msgid ""
|
||||
"The above will allow for a few hundred images to be processed without too"
|
||||
" many issues. A CPU with more cores will allow for faster processing, "
|
||||
"while a graphics card (GPU) currently has no impact on performance. For "
|
||||
"processing more images, add more disk space and RAM linearly to the "
|
||||
"number of images you need to process."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:75
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:77
|
||||
msgid ""
|
||||
"We recommend people use `docker <https://www.docker.com>`_ for running "
|
||||
"ODM, whether you are on Windows, macOS or Linux."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:80
|
||||
msgid "Windows"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:82
|
||||
msgid ""
|
||||
"To run OpenDroneMap you need at least Windows 7. Previous versions of "
|
||||
"Windows are not supported."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:86 ../../source/installation.rst:238
|
||||
msgid "Step 1. Check Virtualization Support"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:88
|
||||
msgid ""
|
||||
"Docker requires a feature from your CPU called virtualization, which "
|
||||
"allows it to run virtual machines (VMs). Make sure you have it enabled! "
|
||||
"Sometimes this is disabled. To check, on Windows 8 or higher you can open"
|
||||
" the **Task Manager** (press CTRL+SHIFT+ESC) and switch to the "
|
||||
"**Performance** tab."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:94
|
||||
msgid "*Virtualization should be enabled*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:96
|
||||
msgid ""
|
||||
"On Windows 7 to see if you have virtualization enabled you can use the "
|
||||
"`Microsoft® Hardware-Assisted Virtualization Detection Tool <http:// "
|
||||
"www.microsoft.com/en-us/download/details.aspx?id=592>`_ instead."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:99
|
||||
msgid ""
|
||||
"If virtualization is disabled, you’ll need to enable it. The procedure "
|
||||
"unfortunately is a bit different for each computer model, so the best way"
|
||||
" to do this is to look up on a search engine “how to enable vtx for <type"
|
||||
" your computer model here>”. Often times it’s a matter of restarting the "
|
||||
"computer, immediately pressing F2 or F12 during startup, navigating the "
|
||||
"boot menu and changing the settings to enable virtualization (often "
|
||||
"called “VT-X”)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:105
|
||||
msgid ""
|
||||
"*Common keys to press at computer startup to access the boot menu for "
|
||||
"various PC vendors*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:108 ../../source/installation.rst:257
|
||||
msgid "Step 2. Install Requirements"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:110
|
||||
msgid "First, you’ll need to install:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:112
|
||||
msgid "Git: https://git-scm.com/downloads"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:113
|
||||
msgid "Python (latest version 3): https://www.python.org/downloads/windows/"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:115
|
||||
msgid ""
|
||||
"For Python 3, make sure you check **Add Python 3.x to PATH** during the "
|
||||
"installation."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:121
|
||||
msgid ""
|
||||
"*Don’t forget to add the Python executable to your PATH (so that you can "
|
||||
"run commands with it)*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:123
|
||||
msgid ""
|
||||
"Then, only if you are on Windows 10 Home, Windows 8 (any version) or "
|
||||
"Windows 7 (any version), install:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:125
|
||||
msgid ""
|
||||
"Docker Toolbox: "
|
||||
"https://github.com/docker/toolbox/releases/download/v18.09.3/DockerToolbox-18.09.3.exe"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:127
|
||||
msgid ""
|
||||
"If you are on Windows 10 Professional or a newer version, you should "
|
||||
"install instead:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:129
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Docker for Windows: "
|
||||
"https://download.docker.com/win/stable/Docker%20for%20Windows%20Installer.exe"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:131
|
||||
msgid ""
|
||||
"Please do **NOT** install both docker programs. They are different and "
|
||||
"will create a mess if they are both installed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:133
|
||||
msgid ""
|
||||
"After installing docker, launch it from the Desktop icon that is created "
|
||||
"from the installation (**Docker Quickstart** in the case of Docker "
|
||||
"Toolbox, **Docker for Windows** for Docker for Windows). This is "
|
||||
"important, do not skip this step. If there are errors, follow the prompts"
|
||||
" on screen to fix them."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:136 ../../source/installation.rst:299
|
||||
msgid "Step 3. Check Memory and CPU Allocation"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:138
|
||||
msgid ""
|
||||
"Docker on Windows works by running a VM in the background (think of a VM "
|
||||
"as a “computer emulator”). This VM has a certain amount of memory "
|
||||
"allocated and WebODM can only use as much memory as it’s allocated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:140
|
||||
msgid ""
|
||||
"If you installed Docker Toolbox (see below if you installed Docker for "
|
||||
"Windows instead):"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:142
|
||||
msgid "Open the **VirtualBox Manager** application"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:143
|
||||
msgid ""
|
||||
"Right click the **default** VM and press **Close (ACPI Shutdown)** to "
|
||||
"stop the machine"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:144
|
||||
msgid "Right click the **default** VM and press **Settings...**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Move the **Base Memory** slider from the **System** paneland allocate "
|
||||
"60-70% of all available memory, optionally adding 50% of the available "
|
||||
"processors from the **Processor** tab also"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:151
|
||||
msgid "*VirtualBox default VM settings*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:153
|
||||
msgid "Then press **OK**, right click the **default** VM and press **Start**."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:155
|
||||
msgid "If you installed Docker for Windows instead:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:157
|
||||
msgid "Look in the system tray and right click the “white whale” icon."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:158
|
||||
msgid "From the menu, press **Settings...**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:159
|
||||
#, python-format
|
||||
msgid ""
|
||||
"From the panel, click **Advanced** and use the sliders to allocate 60-70%"
|
||||
" of available memory and use half of all available CPUs."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:160
|
||||
msgid "Press **Apply**."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:166
|
||||
msgid "*Step 1 Docker icon*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:172
|
||||
msgid "*Step 3 & 4 Docker settings*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:175
|
||||
msgid "Step 4. Download WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:177
|
||||
msgid "Open the **Git Gui** program that comes installed with Git. From there:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:179
|
||||
msgid "When Git Gui opens, click 'Clone Existing Repository' option"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:180
|
||||
msgid "In **Source Location** type: https://github.com/OpenDroneMap/WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:181
|
||||
msgid ""
|
||||
"In **Target Directory** click browse and navigate to a folder of your "
|
||||
"choosing (create one if necessary)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:182
|
||||
msgid "Press **Clone**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:188
|
||||
msgid "*Git Gui*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:190
|
||||
msgid "If the download succeeded, you should now see this window:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:196
|
||||
msgid "*Git Gui after successful download (clone)*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:198
|
||||
msgid ""
|
||||
"Go to the **Repository** menu, then click **Create Desktop Icon**. This "
|
||||
"will allow you to come back to this application easily in the future."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:201
|
||||
msgid "Step 4. Launch WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:203
|
||||
msgid ""
|
||||
"From Git Gui, go to the **Repository** menu, then click **Git Bash**. "
|
||||
"From the command line terminal type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:209
|
||||
msgid ""
|
||||
"Several components will download to your machine at this point, including"
|
||||
" WebODM, NodeODM and ODM. After the download you should be greeted by the"
|
||||
" following screen:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:215
|
||||
msgid "*Console output after starting WebODM for the first time*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:217
|
||||
msgid ""
|
||||
"If you are using Docker for Windows, open a web browser to "
|
||||
"http://localhost:8000"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:218
|
||||
msgid ""
|
||||
"If you are using Docker Toolbox, find the IP address to connect to by "
|
||||
"typing:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:224
|
||||
msgid "You should get a result like the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:230
|
||||
msgid ""
|
||||
"Then connect to http://192.168.1.100:8000 (replacing the IP address with "
|
||||
"the proper one)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:233
|
||||
msgid "macOS"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:235
|
||||
msgid ""
|
||||
"Most modern (post 2010) Mac computers running macOS Sierra 10.12 or "
|
||||
"higher can run OpenDroneMap using docker, as long as hardware "
|
||||
"virtualization is supported (see below)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:240
|
||||
msgid "Open a Terminal window and type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:246
|
||||
msgid "You will get a response similar to the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:252
|
||||
msgid ""
|
||||
"If the result is *kern.hv_support: 1*, then your Mac is supported! "
|
||||
"Continue with Step 2."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:254
|
||||
msgid ""
|
||||
"If the result is *kern.hv_support: 0*, unfortunately it means your Mac is"
|
||||
" too old to run OpenDroneMap. :("
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:259
|
||||
msgid "There are only two programs to install:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:261
|
||||
msgid "Docker: https://download.docker.com/mac/stable/Docker.dmg"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:262
|
||||
msgid "Git: https://sourceforge.net/projects/git-osx-installer/files/"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:264
|
||||
msgid ""
|
||||
"After installing docker you should find an icon that looks like a whale "
|
||||
"in the task bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:270
|
||||
msgid "*Docker app running*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:272
|
||||
msgid ""
|
||||
"You can verify that docker is running properly by opening the "
|
||||
"**Terminal** app and typing:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:278
|
||||
msgid "Which should return"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:284
|
||||
msgid "To verify that git is installed, simply type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:290
|
||||
msgid "Which should return something similar to the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:296
|
||||
msgid ""
|
||||
"If you get a “bash: git: command not found”, try to restart your "
|
||||
"**Terminal** app and double-check for any errors during the install "
|
||||
"process."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:301
|
||||
msgid ""
|
||||
"Docker on macOS works by running a VM in the background (think of it as a"
|
||||
" “computer emulator”). This VM has a certain amount of memory allocated "
|
||||
"and WebODM can only use as much memory as it’s allocated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:303
|
||||
msgid "Right click the whale icon from the task bar and click **Preferences**..."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:304
|
||||
msgid "Select the **Advanced** tab"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:305
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Adjust the CPUs slider to use half of all available CPUs and the memory "
|
||||
"to use 60-70% of all available memory"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:306
|
||||
msgid "Press **Apply & Restart**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:312
|
||||
msgid "*Docker advanced settings*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:315
|
||||
msgid "Step 4. Download and Launch WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:317
|
||||
msgid "From a **Terminal** type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:325 ../../source/installation.rst:426
|
||||
msgid "Then open a web browser to http://localhost:8000."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:328
|
||||
msgid "Linux"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:330
|
||||
msgid ""
|
||||
"OpenDroneMap can run on any Linux distribution that supports docker. "
|
||||
"According to `docker’s documentation website "
|
||||
"<https://docs.docker.com/install/>`_ the officially supported "
|
||||
"distributions are CentOS, Debian, Ubuntu and Fedora, with static binaries"
|
||||
" available for others. If you have to pick a distribution solely for "
|
||||
"running OpenDroneMap, Ubuntu is the recommended way to go."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:333
|
||||
msgid "Step 1. Install Requirements"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:335
|
||||
msgid "There are four programs that need to be installed:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:337
|
||||
msgid "Docker"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:338
|
||||
msgid "Git"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:339
|
||||
msgid "Python (2 or 3)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:340
|
||||
msgid "Pip"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:342
|
||||
msgid ""
|
||||
"We cannot possibly cover the installation process for every Linux "
|
||||
"distribution out there, so we’ll limit the instructions to those that are"
|
||||
" distributions officially supported by docker. In all cases it’s just a "
|
||||
"matter of opening a terminal prompt and typing a few commands."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:345
|
||||
msgid "Install on Ubuntu / Debian"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:347 ../../source/installation.rst:359
|
||||
#: ../../source/installation.rst:370 ../../source/installation.rst:381
|
||||
msgid "Commands to type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:357
|
||||
msgid "Install on CentOS / RHEL"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:368
|
||||
msgid "Install on Fedora"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:379
|
||||
msgid "Install on Arch"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:388
|
||||
msgid "Step 2. Check Additional Requirements"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:390
|
||||
msgid ""
|
||||
"In addition to the three programs above, the dockercompose script is also"
|
||||
" needed. Sometimes it’s already installed with docker, but sometimes it "
|
||||
"isn’t. To verify if it’s installed try to type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:396
|
||||
msgid "You should see somethings similar to the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:402
|
||||
msgid "If instead you get something similar to the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:408
|
||||
msgid "you can install it by using pip:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:416
|
||||
msgid "Step 3. Download and Launch WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:418
|
||||
msgid "From a terminal type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:429
|
||||
msgid "Basic Commands and Troubleshooting"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:431
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The cool thing about using docker is that 99% of the tasks you’ll ever "
|
||||
"need to perform while using WebODM can be done via the ./webodm.sh "
|
||||
"script. You have already encountered one of them:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:437
|
||||
msgid ""
|
||||
"which takes care of starting WebODM and setting up a default processing "
|
||||
"node (node-odm-1). If you want to stop WebODM, you can already guess what"
|
||||
" the command is:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:443
|
||||
msgid ""
|
||||
"There are several other commands you can use, along with different flags."
|
||||
" Flags are parameters passed to the ./webodm.sh command and are typically"
|
||||
" prefixed with “–”. The **port** flag for example instructs WebODM to use"
|
||||
" a different network port:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:449
|
||||
msgid "Other useful commands are listed below:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:468
|
||||
msgid ""
|
||||
"`The community forum <https://community.opendronemap.org>`_ is a great "
|
||||
"place to ask for help if you get stuck during any of the installation"
|
||||
" steps and for general questions on using the ./webodm.sh script."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:471
|
||||
msgid "Hello, WebODM!"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:473
|
||||
msgid ""
|
||||
"After running ./webodm.sh start and opening WebODM in the browser, you "
|
||||
"will be greeted with a welcome message and will be asked to create the "
|
||||
"first user. Take some time to familiarize yourself with the web interface"
|
||||
" and explore its various menus."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:479
|
||||
msgid "*WebODM Dashboard*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:481
|
||||
msgid ""
|
||||
"Notice that under the **Processing Nodes** menu there’s a \"node-odm-1\" "
|
||||
"node already configured for you to use. This is a NodeODM node and has "
|
||||
"been created automatically by WebODM. This node is running on the same "
|
||||
"machine as WebODM."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:483
|
||||
msgid ""
|
||||
"If you’ve made it this far, congratulations! Now it’s time to start "
|
||||
"processing some data."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:490
|
||||
msgid "Running on more than one machine"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:492
|
||||
msgid ""
|
||||
"**Optionally:** If you have another computer, you can repeat the "
|
||||
"installation process (install docker, git, python, etc.) and launch a new"
|
||||
" NodeODM node by typing from a Terminal/Git Bash window:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:498
|
||||
msgid ""
|
||||
"The above command asks docker to launch a new container using the "
|
||||
"opendronemap/nodeodm image from Docker Hub (the latest version of "
|
||||
"NodeODM), using port 3000, setting a maximum number of concurrent tasks "
|
||||
"to 1 and to protect the node from unauthorized access using the password "
|
||||
"\"secret\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:500
|
||||
msgid ""
|
||||
"From WebODM you can then press the **Add New** button under **Processing "
|
||||
"Nodes**. For the **hostname/IP** field type the IP of the second "
|
||||
"computer. For the **port** field type “3000”. For the **token** field "
|
||||
"type “secret”. You can also add an optional **label** for your node, such"
|
||||
" as “second computer”. Then press **Save**."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:502
|
||||
msgid ""
|
||||
"If everything went well, you should now have two processing nodes! You "
|
||||
"will be able to process multiple tasks in parallel using two different "
|
||||
"machines."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:504
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/installation.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "In **Source Location** type: https://github.com/Open-DroneMap/WebODM"
|
||||
#~ msgstr ""
|
||||
|
|
@ -1,275 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:01+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/large.rst:4
|
||||
msgid "Splitting Large Datasets"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:6
|
||||
msgid ""
|
||||
"Starting with ODM version ``0.6.0`` you can split up very large datasets "
|
||||
"into manageable chunks (called submodels), running the pipeline on each "
|
||||
"chunk, and then producing merged DEMs, orthophotos and point clouds. The "
|
||||
"process is referred to as \"split-merge\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:8
|
||||
msgid ""
|
||||
"Why might you use the split-merge pipeline? If you have a very large "
|
||||
"number of images in your dataset, split-merge will help make the "
|
||||
"processing more manageable on a large machine (it will require less "
|
||||
"memory). If you have many machines all connected to the same network you "
|
||||
"can also process the submodels in parallel, thus allowing for horizontal "
|
||||
"scaling and processing thousands of images more quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:10
|
||||
msgid ""
|
||||
"Split-merge works in WebODM out of the box as long as the processing "
|
||||
"nodes support split-merge, by enabling the ``--split`` option when "
|
||||
"creating a new task."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:13
|
||||
msgid "Calibrate images"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:15
|
||||
msgid ""
|
||||
"Image calibration is recommended (but not required) for large datasets "
|
||||
"because error propagation due to image distortion could cause a bowl "
|
||||
"effect on the models. Calibration instructions can be found at "
|
||||
"`Calibrate Images <tutorials.html#calibrating-the-camera>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:21
|
||||
msgid ""
|
||||
"Bowling effect on point cloud over 13,000+ image dataset collected by "
|
||||
"World Bank Tanzania over the flood prone Msimbasi Basin, Dar es Salaam, "
|
||||
"Tanzania."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:24
|
||||
msgid "Local Split-Merge"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:26
|
||||
msgid ""
|
||||
"Splitting a dataset into more manageable submodels and sequentially "
|
||||
"processing all submodels on the same machine is easy! Just use "
|
||||
"``--split`` and ``--split-overlap`` to decide the the average number of "
|
||||
"images per submodels and the overlap (in meters) between submodels "
|
||||
"respectively"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:32
|
||||
msgid ""
|
||||
"If you already know how you want to split the dataset, you can provide "
|
||||
"that information and it will be used instead of the clustering algorithm."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:34
|
||||
msgid ""
|
||||
"The grouping can be provided by adding a file named image_groups.txt in "
|
||||
"the main dataset folder. The file should have one line per image. Each "
|
||||
"line should have two words: first the name of the image and second the "
|
||||
"name of the group it belongs to. For example::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:42
|
||||
msgid ""
|
||||
"will create 3 submodels. Make sure to pass ``--split-overlap 0`` if you "
|
||||
"manually provide a ``image_groups.txt`` file."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:46
|
||||
msgid "Distributed Split-Merge"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:48
|
||||
msgid ""
|
||||
"ODM can also automatically distribute the processing of each submodel to "
|
||||
"multiple machines via `NodeODM "
|
||||
"<https://github.com/OpenDroneMap/NodeODM>`_ nodes, orchestrated via "
|
||||
"`ClusterODM <https://github.com/OpenDroneMap/ClusterODM>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:55
|
||||
msgid "Getting Started with Distributed Split-Merge"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:57
|
||||
msgid "The first step is start ClusterODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:63
|
||||
msgid ""
|
||||
"Then on each machine you want to use for processing, launch a NodeODM "
|
||||
"instance via"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:69
|
||||
msgid ""
|
||||
"Connect via telnet to ClusterODM and add the IP addresses/port of the "
|
||||
"machines running NodeODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:84
|
||||
msgid "Make sure you are running version ``1.5.1`` or higher of the NodeODM API."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:86
|
||||
msgid ""
|
||||
"At this point, simply use the ``--sm-cluster`` option to enable "
|
||||
"distributed split-merge"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:93
|
||||
msgid "Understanding the Cluster"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:95
|
||||
msgid ""
|
||||
"When connected via telnet, it is possible to interrogate what is "
|
||||
"happening on the cluster. For example, we can use the command HELP to "
|
||||
"find out available commands"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:118
|
||||
msgid ""
|
||||
"If, for example, the NodeODM instance wasn't active when ClusterODM "
|
||||
"started, we might list nodes and see something as follows"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:125
|
||||
msgid ""
|
||||
"To address this, we can start up our local node (if not already started),"
|
||||
" and then perform a ``NODE UPDATE``"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:135
|
||||
msgid "Accessing the Logs"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:137
|
||||
msgid ""
|
||||
"While a process is running, it is also possible to list the tasks, and "
|
||||
"view the task output"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:145
|
||||
msgid "Autoscaling ClusterODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:147
|
||||
msgid ""
|
||||
"ClusterODM also includes the option to autoscale on multiple platforms, "
|
||||
"including, to date, Amazon and Digital Ocean. This allows users to reduce"
|
||||
" costs associated with always-on instances as well as being able to scale"
|
||||
" processing based on demand."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:149
|
||||
msgid "To setup autoscaling you must:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:151
|
||||
msgid "Have a functioning version of NodeJS installed and then install ClusterODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:159
|
||||
msgid "Make sure docker-machine is installed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:160
|
||||
msgid "Setup a S3-compatible bucket for storing results."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:161
|
||||
msgid ""
|
||||
"Create a configuration file for `DigitalOcean "
|
||||
"<https://github.com/OpenDroneMap/ClusterODM/blob/master/docs/digitalocean.md>`_"
|
||||
" or `Amazon Web Services "
|
||||
"<https://github.com/OpenDroneMap/ClusterODM/blob/master/docs/aws.md>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:163
|
||||
msgid "You can then launch ClusterODM with"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:169
|
||||
msgid "You should see something similar to following messages in the console"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:177
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You should always have at least one static NodeODM node attached to "
|
||||
"ClusterODM, even if you plan to use the autoscaler for all processing. If"
|
||||
" you setup auto scaling, you can't have zero nodes and rely 100% on the "
|
||||
"autoscaler. You need to attach a NodeODM node to act as the \"reference "
|
||||
"node\" otherwise ClusterODM will not know how to handle certain requests "
|
||||
"(for the forwarding the UI, for validating options prior to spinning up "
|
||||
"an instance, etc.). For this purpose, you should add a \"dummy\" NodeODM "
|
||||
"node and lock it"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:187
|
||||
msgid "This way all tasks will be automatically forwarded to the autoscaler."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:190
|
||||
msgid "Limitations"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:192
|
||||
msgid ""
|
||||
"The 3D textured meshes are currently not being merged as part of the "
|
||||
"workflow (only point clouds, DEMs and orthophotos are)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:194
|
||||
msgid ""
|
||||
"GCPs are fully supported, however, there needs to be at least 3 GCP "
|
||||
"points on each submodel for the georeferencing to take place. If a "
|
||||
"submodel has fewer than 3 GCPs, a combination of the remaining GCPs + "
|
||||
"EXIF data will be used instead (which is going to be less accurate). We "
|
||||
"recommend using the ``image_groups.txt`` file to accurately control the "
|
||||
"submodel split when using GCPs."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:197
|
||||
msgid "Acknowledgments"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:198
|
||||
msgid ""
|
||||
"Huge props to Pau and the folks at Mapillary for their amazing "
|
||||
"contributions to OpenDroneMap through their OpenSfM code, which is a key "
|
||||
"component of the split-merge pipeline. We look forward to further pushing"
|
||||
" the limits of OpenDroneMap and seeing how big a dataset we can process."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:200
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/large.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,77 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/multispectral.rst:2
|
||||
msgid "Multispectral Support"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:4
|
||||
msgid ""
|
||||
"Since version 0.9.9 ODM has basic support for radiometric normalization, "
|
||||
"which is able to generate reflectance orthophotos from multispectral "
|
||||
"cameras. Multispectral cameras capture multiple shots of the scene using "
|
||||
"different band sensors."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:7
|
||||
msgid "Hardware"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:9
|
||||
msgid ""
|
||||
"While we aim to support as many cameras as possible, multispectral "
|
||||
"support has been developed using the following cameras, so they will work"
|
||||
" better:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:11
|
||||
msgid "`MicaSense RedEdge-MX and Altum <https://www.micasense.com/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:12
|
||||
msgid "`Sentera 6X <https://sentera.com/6x/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:14
|
||||
msgid ""
|
||||
"Other cameras might also work. You can help us expand this list by "
|
||||
"`sharing datasets <https://community.opendronemap.org/c/datasets/10>`_ "
|
||||
"captured with other cameras."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:17
|
||||
msgid "Usage"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:19
|
||||
msgid ""
|
||||
"Process all the images from all bands at once (do not separate the bands "
|
||||
"into multiple folders) and pass the `--radiometric-calibration` parameter"
|
||||
" to enable radiometric normalization. If the images are part of a multi-"
|
||||
"camera setup, the resulting orthophoto will have N bands, one for each "
|
||||
"camera (+ alpha)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:25
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/multispectral.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,141 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/outputs.rst:2
|
||||
msgid "OpenDroneMap Outputs"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:4
|
||||
msgid "Listed below are some of the useful outputs ODM produces."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:7
|
||||
msgid "Point Cloud"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:9
|
||||
msgid ""
|
||||
"``odm_georeferencing/odm_georeferenced_model.ply/laz/csv`` -- The "
|
||||
"georeferenced point cloud in different file formats"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:15
|
||||
msgid ""
|
||||
"*Point cloud over State University Zanzibar, courtesy of* `Khadija "
|
||||
"Abdullah Ali <https://www.linkedin.com/in/khadija-abdulla-ali-"
|
||||
"56b4044a/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:19
|
||||
msgid "3D Textured Model"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:21
|
||||
msgid ""
|
||||
"``odm_texturing/odm_textured_model.obj`` -- The textured surface mesh "
|
||||
"``odm_texturing/odm_textured_model_geo.obj`` -- The georeferenced and "
|
||||
"textured surface mesh"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:24
|
||||
msgid ""
|
||||
"You can access the point cloud and textured meshes using MeshLab. Open "
|
||||
"MeshLab, and choose File:Import Mesh and choose your textured mesh from a"
|
||||
" location similar to the following: "
|
||||
"``odm_texturing\\odm_textured_model.obj``"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:30
|
||||
msgid ""
|
||||
"*Textured mesh courtesy of* `OpenDroneMap "
|
||||
"<https://twitter.com/opendronemap>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:33
|
||||
msgid "Orthophoto"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:35
|
||||
msgid ""
|
||||
"``odm_orthophoto/odm_orthphoto.png`` -- The orthophoto, but this is a "
|
||||
"simple png, which doesn't have any georeferencing information"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:37
|
||||
msgid ""
|
||||
"``odm_orthophoto/odm_orthphoto.tif`` -- GeoTIFF Orthophoto. You can use "
|
||||
"it in QGIS as a raster layer."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:43
|
||||
msgid ""
|
||||
"*Orthophoto over State University Zanzibar, courtesy of* `Khadija "
|
||||
"Abdullah Ali <https://www.linkedin.com/in/khadija-abdulla-ali-"
|
||||
"56b4044a/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:46
|
||||
msgid "DTM/DSM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:48
|
||||
msgid ""
|
||||
"DTM/DSM will only be created if the ``--dtm`` or ``--dsm`` options are "
|
||||
"used. See `tutorial on elevation models "
|
||||
"<https://docs.opendronemap.org/tutorials.html#creating-digital-elevation-"
|
||||
"models>`_ for more options in creating."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:50
|
||||
msgid "Data will be stored in:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:52
|
||||
msgid "``odm_dem/dtm.tif``"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:53
|
||||
msgid "``odm_dem/dsm.tif``"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:59
|
||||
msgid ""
|
||||
"*Digital surface model over State University Zanzibar, courtesy of* "
|
||||
"`Khadija Abdullah Ali <https://www.linkedin.com/in/khadija-abdulla-ali-"
|
||||
"56b4044a/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:62
|
||||
msgid "List of all outputs"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:109
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/outputs.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "*Textured mesh over State University "
|
||||
#~ "Zanzibar, courtesy of* `Khadija Abdullah "
|
||||
#~ "Ali <https://www.linkedin.com/in/khadija-abdulla-"
|
||||
#~ "ali-56b4044a/>`_"
|
||||
#~ msgstr ""
|
||||
|
|
@ -1,92 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/requesting-features.rst:2
|
||||
msgid "How To Request Features"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:4
|
||||
msgid ""
|
||||
"All software needs user feedback and feature requests, to grow and "
|
||||
"maintain alignment with the needs of its users."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:7
|
||||
msgid ""
|
||||
"OpenDroneMap is FOSS software. Free and open source (FOSS) projects are "
|
||||
"interesting from the inside and outside: from the outside, successful "
|
||||
"ones feel like they should be able to do anything, and it’s hard to know "
|
||||
"what a reasonable request is. From the inside of a project, they can feel"
|
||||
" very resource constrained: largely by time, money, and opportunity "
|
||||
"overload."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:13
|
||||
msgid ""
|
||||
"A feature request can be submitted as issues on the applicable Github "
|
||||
"repository (e.g., `WebODM "
|
||||
"<https://github.com/OpenDroneMap/WebODM/issues>`_ or `ODM "
|
||||
"<https://github.com/OpenDroneMap/ODM/issues>`_ or similar) or more simply"
|
||||
" as a discussion topic on `the community forum "
|
||||
"<https://community.opendronemap.org/>`_. Try to start by searching these "
|
||||
"sources to see if someone else has already brought it up. Sometimes a "
|
||||
"feature is already in the works, or has at least been discussed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:19
|
||||
msgid ""
|
||||
"And importantly, the trick is to listen: if someone within the project "
|
||||
"says: \"This is a big lift, we need MONEY or TIME or SOMEONE TO HELP CODE"
|
||||
" IT\" (or possibly a combination of the three) then there are two answers"
|
||||
" that work really well in response:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:23
|
||||
msgid ""
|
||||
"*Ok. I didn’t know it was a big feature request! I hope someone comes "
|
||||
"along with the necessary resources. As a community member, I would be "
|
||||
"happy to be an early user and tester!*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:25
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:27
|
||||
msgid ""
|
||||
"*Let’s figure out if we can put together the resources to get this done! "
|
||||
"Here’s what I can contribute toward it: …*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:29
|
||||
msgid ""
|
||||
"We are glad you are excited to see new features added to the project. "
|
||||
"Some new features need support, and some are easier to implement. We'll "
|
||||
"do our best to help you understand where your request falls, and we "
|
||||
"appreciate any support you can provide."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:33
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/requesting-"
|
||||
"features.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:01+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/resources.rst:2
|
||||
msgid "Additional References"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:5
|
||||
msgid "For Users"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:7
|
||||
msgid "The following resources are a good place to start:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:9
|
||||
msgid "`README page for ODM <https://github.com/OpenDroneMap/OpenDroneMap>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:10
|
||||
msgid "`README page for WebODM <https://github.com/OpenDroneMap/WebODM>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:11
|
||||
msgid ""
|
||||
"`README page for NodeODM <https://github.com/OpenDroneMap/node-"
|
||||
"OpenDroneMap>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:12
|
||||
msgid ""
|
||||
"`Ground Control Points Format Specification "
|
||||
"<https://github.com/mapillary/OpenSfM/blob/master/doc/source/gcp.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:13
|
||||
msgid "`OpenDroneMap: The Missing Guide <https://odmbook.com/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:16
|
||||
msgid "For Developers"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:18
|
||||
msgid "In addition to user resources, we recommend to also read the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:20
|
||||
msgid "WebODM documentation: https://docs.webodm.org"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:21
|
||||
msgid ""
|
||||
"NodeODM API specification: "
|
||||
"https://github.com/OpenDroneMap/NodeODM/blob/master/docs/index.adoc"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:22
|
||||
msgid ""
|
||||
"Overview of the ODM pipeline: http://community.opendronemap.org/t/where-"
|
||||
"can-i-find-background-information-on-the-concepts-of-odm/665/2"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:23
|
||||
msgid ""
|
||||
"We keep a `section in our forum dedicated to research papers "
|
||||
"<http://community.opendronemap.org/c/ideas-proposals/research-papers>`_. "
|
||||
"This is a valuable place where to read more about state of the art "
|
||||
"research related to structure from motion, multi-view stereo, meshing, "
|
||||
"texturing, etc. which can be used to improve the software."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:26
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/api.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,815 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/tutorials.rst:5
|
||||
msgid "Tutorials"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:7
|
||||
msgid "Below you will find instructions for some common use cases."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:11
|
||||
msgid "Creating High Quality Orthophotos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:17
|
||||
msgid ""
|
||||
"Without any parameter tweaks, ODM chooses a good compromise between "
|
||||
"quality, speed and memory usage. If you want to get higher quality "
|
||||
"results, you need to tweak some parameters:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:19
|
||||
msgid ""
|
||||
"``--orthophoto-resolution`` is the resolution of the orthophoto in "
|
||||
"cm/pixel. Decrease this value for a higher resolution result."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:20
|
||||
msgid ""
|
||||
"``--ignore-gsd`` is a flag that instructs ODM to skip certain memory and "
|
||||
"speed optimizations that directly affect the orthophoto. Using this flag "
|
||||
"will increase runtime and memory usage, but may produce sharper results."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:21
|
||||
msgid ""
|
||||
"``--texturing-nadir-weight`` should be increased to ``29-32`` in urban "
|
||||
"areas to reconstruct better edges of roofs. It should be decreased to "
|
||||
"``0-6`` in grassy / flat areas."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:22
|
||||
msgid "``--texturing-data-term`` should be set to `area` in forest areas."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:23
|
||||
msgid ""
|
||||
"``--mesh-size`` should be increased to `300000-600000` and `--mesh-"
|
||||
"octree-depth`` should be increased to `10-11` in urban areas to recreate "
|
||||
"better buildings / roofs."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:27
|
||||
msgid "Calibrating the Camera"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:29
|
||||
msgid ""
|
||||
"Camera calibration is a special challenge with commodity cameras. "
|
||||
"Temperature changes, vibrations, focus, and other factors can affect the "
|
||||
"derived parameters with substantial effects on resulting data. Automatic "
|
||||
"or self calibration is possible and desirable with drone flights, but "
|
||||
"depending on the flight pattern, automatic calibration may not remove all"
|
||||
" distortion from the resulting products. James and Robson (2014) in their"
|
||||
" paper `Mitigating systematic error in topographic models derived from "
|
||||
"UAV and ground‐based image networks "
|
||||
"<https://onlinelibrary.wiley.com/doi/full/10.1002/esp.3609>`_ address how"
|
||||
" to minimize the distortion from self-calibration."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:35
|
||||
msgid ""
|
||||
"*Bowling effect on point cloud over 13,000+ image dataset collected by "
|
||||
"World Bank Tanzania over the flood prone Msimbasi Basin, Dar es Salaam, "
|
||||
"Tanzania.*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:37
|
||||
msgid ""
|
||||
"To mitigate this effect, there are a few options but the simplest are as "
|
||||
"follows: fly two patterns separated by 20°, and rather than having a "
|
||||
"nadir (straight down pointing) camera, use one that tilts forward by 5°."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:45
|
||||
msgid ""
|
||||
"As this approach to flying can be take longer than typical flights, a "
|
||||
"pilot or team can fly a small area using the above approach. OpenDroneMap"
|
||||
" will generate a calibration file called cameras.json that then can be "
|
||||
"imported to be used to calibrate another flight that is more efficiently "
|
||||
"flown."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:47
|
||||
msgid ""
|
||||
"Alternatively, the following experimental method can be applied: fly with"
|
||||
" much lower overlap, but two *crossgrid* flights (sometimes called "
|
||||
"crosshatch) separated by 20° with a 5° forward facing camera."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:49
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Crossgrid overlap percentages can be lower than parallel flights. To get "
|
||||
"good 3D results, you will require 68% overlap and sidelap for an "
|
||||
"equivalent 83% overlap and sidelap."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:50
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To get good 2D and 2.5D (digital elevation model) results, you will "
|
||||
"require 42% overlap and sidelap for an equivalent 70% overlap and "
|
||||
"sidelap."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:56
|
||||
msgid ""
|
||||
"Vertically separated flight lines also improve accuracy, but less so than"
|
||||
" a camera that is forward facing by 5°."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:62
|
||||
msgid ""
|
||||
"From James and Robson (2014), `CC BY 4.0 "
|
||||
"<https://creativecommons.org/licenses/by/4.0>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:66
|
||||
msgid "Creating Digital Elevation Models"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:68
|
||||
msgid ""
|
||||
"By default ODM does not create DEMs. To create a digital terrain model, "
|
||||
"make sure to pass the ``--dtm`` flag. To create a digital surface model, "
|
||||
"be sure to pass the ``--dsm`` flag."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:74
|
||||
msgid ""
|
||||
"For DTM generation, a Simple Morphological Filter (smrf) is used to "
|
||||
"classify points in ground vs. non-ground and only the ground points are "
|
||||
"used. The ``smrf`` filter can be controlled via several parameters:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:76
|
||||
msgid ""
|
||||
"``--smrf-scalar`` scaling value. Increase this parameter for terrains "
|
||||
"with lots of height variation."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:77
|
||||
msgid ""
|
||||
"``--smrf-slope`` slope parameter, which is a measure of \"slope "
|
||||
"tolerance\". Increase this parameter for terrains with lots of height "
|
||||
"variation. Should be set to something higher than 0.1 and not higher than"
|
||||
" 1.2."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:78
|
||||
msgid ""
|
||||
"``--smrf-threshold`` elevation threshold. Set this parameter to the "
|
||||
"minimum height (in meters) that you expect non-ground objects to be."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:79
|
||||
msgid ""
|
||||
"``--smrf-window`` window radius parameter (in meters) that corresponds to"
|
||||
" the size of the largest feature (building, trees, etc.) to be removed. "
|
||||
"Should be set to a value higher than 10."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:81
|
||||
msgid ""
|
||||
"Changing these options can affect the result of DTMs significantly. The "
|
||||
"best source to read to understand how the parameters affect the output is"
|
||||
" to read the original paper `An improved simple morphological filter for "
|
||||
"the terrain classification of airborne LIDAR data "
|
||||
"<https://www.researchgate.net/publication/258333806_An_Improved_Simple_Morphological_Filter_for_the_Terrain_Classification_of_Airborne_LIDAR_Data>`_"
|
||||
" (PDF freely available)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:83
|
||||
msgid "Overall the ``--smrf-threshold`` option has the biggest impact on results."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:85
|
||||
msgid ""
|
||||
"SMRF is good at avoiding Type I errors (small number of ground points "
|
||||
"mistakenly classified as non-ground) but only \"acceptable\" at avoiding "
|
||||
"Type II errors (large number non-ground points mistakenly classified as "
|
||||
"ground). This needs to be taken in consideration when generating DTMs "
|
||||
"that are meant to be used visually, since objects mistaken for ground "
|
||||
"look like artifacts in the final DTM."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:91
|
||||
msgid "Two other important parameters affect DEM generation:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:93
|
||||
msgid ""
|
||||
"``--dem-resolution`` which sets the output resolution of the DEM raster "
|
||||
"(cm/pixel)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:94
|
||||
msgid ""
|
||||
"``--dem-gapfill-steps`` which determines the number of progressive DEM "
|
||||
"layers to use. For urban scenes increasing this value to `4-5` can help "
|
||||
"produce better interpolation results in the areas that are left empty by "
|
||||
"the SMRF filter."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:96
|
||||
msgid "Example of how to generate a DTM::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:102
|
||||
msgid "Using Docker"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:104
|
||||
msgid ""
|
||||
"Since many users employ docker to deploy OpenDroneMap, it can be useful "
|
||||
"to understand some basic commands in order to interrogate the docker "
|
||||
"instances when things go wrong, or we are curious about what is "
|
||||
"happening. Docker is a containerized environment intended, among other "
|
||||
"things, to make it easier to deploy software independent of the local "
|
||||
"environment. In this way, it is similar to virtual machines."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:106
|
||||
msgid "A few simple commands can make our docker experience much better."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:109
|
||||
msgid "Listing Docker Machines"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:111
|
||||
msgid ""
|
||||
"We can start by listing available docker machines on the current machine "
|
||||
"we are running as follows:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:120
|
||||
msgid ""
|
||||
"If we want to see machines that may not be running but still exist, we "
|
||||
"can add the `-a` flag:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:133
|
||||
msgid "Accessing logs on the instance"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:135
|
||||
msgid ""
|
||||
"Using either the `CONTAINER ID` or the name, we can access any logs "
|
||||
"available on the machine as follows:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:141
|
||||
msgid ""
|
||||
"This is likely to be unwieldy large, but we can use a pipe `|` character "
|
||||
"and other tools to extract just what we need from the logs. For example "
|
||||
"we can move through the log slowly using the `more` command:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:157
|
||||
msgid ""
|
||||
"Pressing `Enter` or `Space`, arrow keys or `Page Up` or `Page Down` keys "
|
||||
"will now help us navigate through the logs. The lower case letter `Q` "
|
||||
"will let us escape back to the command line."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:159
|
||||
msgid ""
|
||||
"We can also extract just the end of the logs using the `tail` commmand as"
|
||||
" follows:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:170
|
||||
msgid ""
|
||||
"The value `-5` tells the tail command to give us just the last 5 lines of"
|
||||
" the logs."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:173
|
||||
msgid "Command line access to instances"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:175
|
||||
msgid ""
|
||||
"Sometimes we need to go a little deeper in our exploration of the process"
|
||||
" for OpenDroneMap. For this, we can get direct command line access to the"
|
||||
" machines. For this, we can use `docker exec` to execute a `bash` command"
|
||||
" line shell in the machine of interest as follows:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:179
|
||||
msgid "::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:178
|
||||
msgid "> docker exec -ti 2518817537ce bash root@2518817537ce:/code#"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:181
|
||||
msgid "Now we are logged into our docker instance and can explore the machine."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:184
|
||||
msgid "Cleaning up after Docker"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:186
|
||||
msgid ""
|
||||
"Docker has a lamentable use of space and by default does not clean up "
|
||||
"excess data and machines when processes are complete. This can be "
|
||||
"advantageous if we need to access a process that has since terminated, "
|
||||
"but carries the burden of using increasing amounts of storage over time. "
|
||||
"Maciej Łebkowski has an `excellent overview of how to manage excess disk "
|
||||
"usage in docker <https://lebkowski.name/docker-volumes/>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:190
|
||||
msgid "Using ODM from low-bandwidth location"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:193
|
||||
msgid "What is this and who is it for?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:195
|
||||
msgid "Via Ivan Gayton's: [repo](https://github.com/ivangayton/GDAL_scripts/)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:197
|
||||
msgid ""
|
||||
"`OpenDroneMap <https://www.opendronemap.org/>`__ can’t always be "
|
||||
"effectively set up locally—it takes a fairly powerful machine to process "
|
||||
"large datasets—so a cloud machine can sometimes be the answer for people "
|
||||
"in the field. However, bandwidth is a problem in many low-income "
|
||||
"settings. This constraint can’t be solved completely, but the following "
|
||||
"method does a reasonable job of reducing the bandwidth needed to process "
|
||||
"drone imagery datasets on the cloud from African locations."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:205
|
||||
msgid ""
|
||||
"Here we present a tricky but workable process to create an OpenDroneMap "
|
||||
"cloud machine (*not* CloudODM, mind you, just a cloud-based instance of "
|
||||
"ODM that you run from the command line) and use it to remotely process "
|
||||
"large photo sets. It requires familiarity with Unix command line use, "
|
||||
"ssh, a Digital Ocean account (Amazon AWS would work as well, possibly "
|
||||
"with slight differences in the setup), and a moderate level of general "
|
||||
"computer literacy. If you aren’t fairly computer-savvy and willing to "
|
||||
"fuss with a slightly tricky setup, `CloudODM "
|
||||
"<https://www.opendronemap.org/cloudodm/>`__ is what you should be looking"
|
||||
" at."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:216
|
||||
msgid ""
|
||||
"The whole process is mostly targeted at someone flying substantial "
|
||||
"missions in an African or similar location looking to process data ASAP "
|
||||
"while still in a field setting. Therefore it emphasizes a workflow "
|
||||
"intended to reduce bandwidth/data transfer, rather than just the simplest"
|
||||
" way of running ODM."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:223
|
||||
msgid "Steps"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:226
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:228
|
||||
msgid ""
|
||||
"Create a Digital Ocean droplet with at least 4GB of RAM. That’ll cost "
|
||||
"about $20/month. Less than 4GB of RAM and the install will probably fail."
|
||||
" When we actually run the ODM process we’ll resize it to a much "
|
||||
"larger—and more expensive—cloud machine, but between runs you can "
|
||||
"downsize it between runs to the second-cheapest droplet which costs only "
|
||||
"$10/month (the cheapest droplet, at $5/month, comes with such a small "
|
||||
"drive that you can’t downsize back to it)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:236
|
||||
msgid "Should be an Ubuntu 16.04 instance to ensure dependency compatibility"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:238
|
||||
msgid ""
|
||||
"Create a user with sudo privileges. `Digital Ocean’s insanely good "
|
||||
"documentation <https://www.digitalocean.com/community/tutorials/initial-"
|
||||
"server-setup-with-ubuntu-16-04>`__ can help you figure this out. In our "
|
||||
"case we set up a user called ``odm``, so connecting to it is via the "
|
||||
"command ``ssh odm@xxx.xxx.xxx.xxx`` (where the x’s stand for the IPv4 "
|
||||
"address of your server). If you want to follow this example closely, *do*"
|
||||
" use the username ``odm``; then your install path will be "
|
||||
"``/home/odm/ODM/`` and will match all of the examples in this document. "
|
||||
"-When you log into the server, it will offer you the option to upgrade to"
|
||||
" Ubuntu 18.04, a more recent version. Don’t. ODM native install doesn’t "
|
||||
"work smoothly on 18.04. Go ahead and execute ``sudo apt update`` and "
|
||||
"``sudo apt upgrade`` to ensure your server isn’t dangerously without "
|
||||
"updates, but stay with Ubuntu 16.04."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:253
|
||||
msgid ""
|
||||
"Download and install ODM on it from the `ODM Github "
|
||||
"<https://github.com/OpenDroneMap/ODM>`__ (regular, not WebODM) with the "
|
||||
"following commands:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:263
|
||||
msgid ""
|
||||
"If you do this from the default home folder of your user (i.e. ``odm``) "
|
||||
"the path to the install will be ``/home/odm/ODM`` (abbreviated as "
|
||||
"``~/ODM/``)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:266
|
||||
msgid ""
|
||||
"There are some environmental variables that need to be set. Open the "
|
||||
"~/.bashrc file on your machine and add the following 3 lines at the end "
|
||||
"(From `the ODM github <https://github.com/OpenDroneMap/ODM>`__). The file"
|
||||
" can be opened with ``nano ~/.bashrc`` (or whatever text editor you use "
|
||||
"in lieu of nano). Be sure to replace ``/home/odm/`` with the correct path"
|
||||
" to the location where you extracted OpenDroneMap if you didn’t do "
|
||||
"everything exactly as in our example (for example if you used a different"
|
||||
" username in your server setup):"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:281
|
||||
msgid ""
|
||||
"Note that the ODM github readme contains a slight error, the install "
|
||||
"directory name will be ODM, not OpenDroneMap (you’ll see this if you "
|
||||
"compare the above instructions to the ones on the ODM GitHub)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:285
|
||||
msgid ""
|
||||
"In order to prevent a crash wherein the split-merge process fails to "
|
||||
"locate its own executable, we add the following lines to ``~/.bashrc`` "
|
||||
"(adjust paths if you’ve set things up differently from our example):"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:295
|
||||
msgid ""
|
||||
"Now you’ll need a second cloud hard drive (a “Volume” in Digital Ocean "
|
||||
"jargon) big enough to manage your project. Rule of thumb seems to be 10 "
|
||||
"times the size of your raw image set; we’ve got a 100GB image set and set"
|
||||
" up a 1000GB volume (once the run is done you should be able to get rid "
|
||||
"of most of this expensive drive capacity, but it’s needed to complete the"
|
||||
" process). Set up the volume, attach it to your droplet, and `configure "
|
||||
"its mount point <https://www.digitalocean.com/docs/volumes/how-"
|
||||
"to/mount/>`__ (in this example we’re setting it to ``/mnt/odmdata/``)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:306
|
||||
msgid "Prep data and project"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:308
|
||||
msgid ""
|
||||
"Now push your images onto the server. You can use `Secure Copy (scp) "
|
||||
"<https://en.wikipedia.org/wiki/Secure_copy>`__ like so: ``scp -r "
|
||||
"/path/to/my/imagefolder odm@xxx.xxx.xxx.xxx:/mnt/odmdata/``."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:312
|
||||
msgid ""
|
||||
"This pushes the entire folder full of images (that’s what the ``-r`` "
|
||||
"option does, “recursive”) into the remote location (in our example, into "
|
||||
"the volume we attached to the cloud machine at ``/mnt/odmdata/``."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:316
|
||||
msgid ""
|
||||
"This will take some bandwidth. No way around the size of the files.\\ `1 "
|
||||
"<#footnote1>`__, \\ `2 <#footnote2>`__\\"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:320
|
||||
msgid "Directory structure"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:322
|
||||
msgid ""
|
||||
"ODM requires the directories on the machine to be set up just so. The "
|
||||
"critical bits are the install folder (if you installed as above, it’s "
|
||||
"``/home/odm/ODM/``) and the project folder (i.e. "
|
||||
"``/mnt/odmdata/myproject/``)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:327
|
||||
msgid ""
|
||||
"ODM’s settings.yaml file specifies a single parent directory containing "
|
||||
"all projects. This is what goes in the project path line of the "
|
||||
"settings.yaml file (slightly confusingly, this is actually the *parent* "
|
||||
"directory of the individual project directories, which are specified by "
|
||||
"the project name parameter when calling ODM). Edit settings.yaml and set "
|
||||
"the project_path parameter to (as per our example setup) "
|
||||
"``/mnt/odmdata/``, which in this case points to the Volume we created. "
|
||||
"Individual project directories are created within that."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:336
|
||||
msgid ""
|
||||
"Individual project directories, i.e. ``/mnt/odmdata/myproject/`` contain "
|
||||
"the gcp_list.txt file, the image_groups.txt file, and the images folder "
|
||||
"for each project``\\`"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:339
|
||||
msgid ""
|
||||
"The images folder, i.e. ``/mnt/odmdata/myproject/images/`` contains all "
|
||||
"of the images. If you set it up like this, the images don’t get re-copied"
|
||||
" because they’re already in the directory that ODM wants them in."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:343
|
||||
msgid ""
|
||||
"If you’ve got images with GPS info on them (as from an Ebee), use "
|
||||
"exiftool to massage the GPS information ``exiftool "
|
||||
"\"-GPSDOP<GPSZAccuracy\" .``.\\ `3 <#footnote3>`__\\ To do so you’ll "
|
||||
"need to install exiftool. The command for that is probably ``sudo apt "
|
||||
"install libimage-exiftool-perl``."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:348
|
||||
msgid ""
|
||||
"Modify settings.yaml to specify the parent directory of the project "
|
||||
"folder (in this case the Volume we created, ``/mnt/odmdata/``). Make sure"
|
||||
" the images are in the correct spot, i.e. "
|
||||
"``/mnt/odmdata/myproject/images`` and the other ancillary files "
|
||||
"(gcp_list.txt and image_groups.txt) are in the root folder "
|
||||
"``/mnt/odmdata/myproject/``"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:354
|
||||
msgid ""
|
||||
"if you have the images in separate folders for individual AOI blocks or "
|
||||
"flights (which you will if your flight management was organized), you can"
|
||||
" create an image_groups.txt file with the incantations ``for i in *; do "
|
||||
"cd $i; for j in *; do echo \"$j $i\" >> ../$i.txt; done; cd ../; done;`` "
|
||||
"and ``cd ../``, ``for i in myproject/*.txt; do cat $i >> "
|
||||
"image_groups.txt; done;``. That should create a file with the correct "
|
||||
"structure: a list of all image files and a “group name” after each one "
|
||||
"(which in this case will simply be the name of the folder it came from). "
|
||||
"Then move all of the image files into a single directory called images in"
|
||||
" the project root dir (so ``/mnt/odmdata/myproject/images/``). The "
|
||||
"image_groups.txt file will allow ODM to keep track of which images belong"
|
||||
" to the same batch, even though they’re all in a single directory."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:370
|
||||
msgid "Resize droplet, pull pin, run away"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:372
|
||||
msgid ""
|
||||
"Shut down and resize your machine to an appropriately monstrous number of"
|
||||
" CPUs and amount of memory. I use the memory-optimized machine with 24 "
|
||||
"dedicated vCPUs and 192GB of RAM (which costs about $1.60/hr—which adds "
|
||||
"up fast, it’s over $1000/month). Restart, and get to work quickly so as "
|
||||
"not to waste expensive big-droplet time."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:377
|
||||
msgid ""
|
||||
"Launch the ODM process via ssh using nohup (so that if you’re cut off, "
|
||||
"processing will continue)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:380
|
||||
msgid ""
|
||||
"Alternately you can use GNU screen to launch the process from a screen "
|
||||
"session which won’t stop if your connection is interrupted; launch "
|
||||
"``screen``, and use ``<ctrl> a <ctrl> d`` to detach, ``screen -r`` to re-"
|
||||
"attach. But using screen won’t get you a log file of all of the console "
|
||||
"output unless you do something specific to capture that, while nohup "
|
||||
"gives you a file with all of the console output, including error "
|
||||
"messages, for free."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:387
|
||||
msgid ""
|
||||
"Note: as of 2020-03 the normal incantation ``python run.py -i "
|
||||
"/path/to/image/folder project_name`` seems *not* to work; the ``-i`` or "
|
||||
"``--image`` parameter causes a weird error. So we drop the -i parameter, "
|
||||
"and rely on the project directory line in the settings.yaml file to "
|
||||
"direct ODM to the right place. Now using (including a split-merge):"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:398
|
||||
msgid ""
|
||||
"This points ODM at the folder (in this example) "
|
||||
"``/mnt/odmdata/myproject/``. Provided the image_groups.txt and "
|
||||
"gcp_list.txt are in this folder, the images are in "
|
||||
"``/mnt/odmdata/myproject/images/``, and the project path in settings.yaml"
|
||||
" is ``/mnt/odmdata/`` it will not waste time and space copying images."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:405
|
||||
msgid ""
|
||||
"Note that this assumes you have an image_groups.txt file. If not, this "
|
||||
"``-split-overlap 0`` will probably fuck things up, and the ``--split 1`` "
|
||||
"is literally a random number that will be ignored after the "
|
||||
"image_groups.txt file is loaded (I think it normally controls how many "
|
||||
"groups it splits a set of images into, but in our case we’re assuming the"
|
||||
" images are already grouped sensibly). If you don’t have a large dataset "
|
||||
"(>1000 images), omit the ``--split`` and ``--split-overlap`` options."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:414
|
||||
msgid "Follow the progress using tail (so that you’ll know when it’s done)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:420
|
||||
msgid ""
|
||||
"You may want to keep an eye on htop (to get a sense of the resource usage"
|
||||
" so that in future you can only spin up a machine as large as necessary)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:425
|
||||
msgid "After it finishes (assuming you survive that long)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:427
|
||||
msgid ""
|
||||
"As soon as processing is done, shut down the machine and resize it back "
|
||||
"down to the inexpensive minimum capacity."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:429
|
||||
msgid "Start the machine back up, and log in via ssh."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:430
|
||||
msgid ""
|
||||
"If you want to save download bandwidth, you can compress the orthophoto "
|
||||
"using GDAL. Don’t add overviews, do that on your local machine to avoid "
|
||||
"making the file bigger before downloading it."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:438
|
||||
msgid ""
|
||||
"Download using scp: ``scp "
|
||||
"odm@xxx.xxx.xxx.xxx:/mnt/odmdata/myproject/odm_orthophoto/odm_orthophoto.tif``"
|
||||
" (or grab the compressed version you created in the last step)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:442
|
||||
msgid ""
|
||||
"Once you get the file on your local computer, you can use QGIS to add "
|
||||
"overviews (“pyramids”) or use the GDAL command ``gdaladdo -r average "
|
||||
"/path/to/image.tif 2 4 8 16 32 64 128 256 512 1024``."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:446
|
||||
msgid ""
|
||||
"You can archive the odm_texturing, odm_georeferencing, and odm-dem "
|
||||
"folders using tar to make them easier to download in one piece (and maybe"
|
||||
" smaller)."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "``--ignore-gsd`` is a flag that "
|
||||
#~ "instructs ODM to skip certain memory "
|
||||
#~ "and speed optimizations that directly "
|
||||
#~ "affect the orthophoto. Using this flag"
|
||||
#~ " will increase runtime and memory "
|
||||
#~ "usage, but will produce sharper results."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Ground Control Points"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Ground control points are useful for "
|
||||
#~ "correcting distortions in the data and"
|
||||
#~ " referencing the data to know "
|
||||
#~ "coordinate systems."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "The format of the GCP file is simple."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The header line is a description "
|
||||
#~ "of a UTM coordinate system, which "
|
||||
#~ "must be written as a proj4 string."
|
||||
#~ " http://spatialreference.org/ is a good "
|
||||
#~ "resource for finding that information. "
|
||||
#~ "Please note that currently angular "
|
||||
#~ "coordinates (like lat/lon) DO NOT work."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Subsequent lines are the X, Y &"
|
||||
#~ " Z coordinates, your associated pixels "
|
||||
#~ "and the image filename:"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "GCP file format::"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "e.g. for the Langley dataset::"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "If you supply a GCP file called"
|
||||
#~ " gcp_list.txt then ODM will automatically"
|
||||
#~ " detect it. If it has another "
|
||||
#~ "name you can specify using ``--gcp "
|
||||
#~ "<path>``. If you have a gcp file"
|
||||
#~ " and want to do georeferencing with"
|
||||
#~ " exif instead, then you can specify"
|
||||
#~ " ``--use-exif``."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "`This post has some information about"
|
||||
#~ " placing Ground Control Targets before "
|
||||
#~ "a flight <http://diydrones.com/profiles/blogs/ground-"
|
||||
#~ "control-points-gcps-for-aerial-"
|
||||
#~ "photography>`_, but if you already have"
|
||||
#~ " images, you can find your own "
|
||||
#~ "points in the images post facto. "
|
||||
#~ "It's important that you find high-"
|
||||
#~ "contrast objects that are found in "
|
||||
#~ "**at least** 3 photos, and that "
|
||||
#~ "you find a minimum of 5 objects."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Sharp corners are good picks for "
|
||||
#~ "GCPs. You should also place/find the "
|
||||
#~ "GCPs evenly around your survey area."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The ``gcp_list.txt`` file must be "
|
||||
#~ "created in the base of your "
|
||||
#~ "project folder."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "For good results your file should "
|
||||
#~ "have a minimum of 15 lines after"
|
||||
#~ " the header (5 points with 3 "
|
||||
#~ "images to each point)."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Ground Control Points Interface"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "WebODM has a GCP interface, and "
|
||||
#~ "example of which can be seen on"
|
||||
#~ " `the WebODM Demo <http://demo.webodm.org/plugins"
|
||||
#~ "/posm-gcpi/>`_. To use this with "
|
||||
#~ "known ground control XYZ values, one "
|
||||
#~ "would do the following:"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Create a GCP list that only "
|
||||
#~ "includes gcp name (this is the "
|
||||
#~ "label that will be seen in the "
|
||||
#~ "GCP interface), x, y, and z, with"
|
||||
#~ " a header with a proj4 string "
|
||||
#~ "of your GCPs (make sure they are"
|
||||
#~ " in a planar coordinate system, such"
|
||||
#~ " as UTM. It should look something "
|
||||
#~ "like this:"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Then one can load this GCP list"
|
||||
#~ " into the interface, load the images,"
|
||||
#~ " and place each of the GCPs in"
|
||||
#~ " the image."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "`Help edit these docs! "
|
||||
#~ "<https://github.com/OpenDroneMap/docs/blob/publish/source/using.rst>`_"
|
||||
#~ msgstr ""
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:01+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/arguments.rst:4
|
||||
msgid "Options and Flags"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/arguments.rst:6
|
||||
msgid "Arguments::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/arguments.rst:289
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/using.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,196 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/contributing.rst:4
|
||||
msgid "How To Contribute"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:6
|
||||
msgid ""
|
||||
"OpenDroneMap relies on community contributions. You can contribute in "
|
||||
"many ways, even if you are not a programmer."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:9
|
||||
msgid "Community Forum"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:11
|
||||
msgid ""
|
||||
"If you are looking to get involved, are stuck on a problem, or want to "
|
||||
"reach out, `the forum <https://community.opendronemap.org/>`_ is a great "
|
||||
"place to start. You may find your questions already answered or else you "
|
||||
"can find other useful tips and resources. You can also contribute your "
|
||||
"open access datasets for others to explore. It is a good place go before "
|
||||
"submitting bug reports or getting in touch with developers before writing"
|
||||
" a new feature."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:14
|
||||
msgid "Reporting Bugs"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:16
|
||||
msgid ""
|
||||
"Bugs are tracked as Github issues. Please create an issue in the "
|
||||
"repository and tag it with the Bug tag."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:18
|
||||
msgid ""
|
||||
"Explain the problem and include additional details to help maintainers "
|
||||
"reproduce the problem:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:20
|
||||
msgid ""
|
||||
"**Use a clear and descriptive title** for the issue to identify the "
|
||||
"problem."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:21
|
||||
msgid ""
|
||||
"**Describe the exact steps which reproduce the problem** in as many "
|
||||
"details as possible. For example, start by explaining how you run ODM "
|
||||
"(Docker, Vagrant, etc), e.g. which command exactly you used in the "
|
||||
"terminal. When listing steps, **don't just say what you did, but explain "
|
||||
"how you did it.**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:22
|
||||
msgid ""
|
||||
"**Provide specific examples to demonstrate the steps.** Include links to "
|
||||
"files or GitHub projects, or copy/pasteable snippets, which you use in "
|
||||
"those examples. If you're providing snippets in the issue, use `Markdown "
|
||||
"code blocks <https://help.github.com/articles/markdown-basics/#multiple-"
|
||||
"lines>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:23
|
||||
msgid ""
|
||||
"**Describe the behavior you observed after following the steps** and "
|
||||
"point out what exactly is the problem with that behavior."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:24
|
||||
msgid "**Explain which behavior you expected to see instead and why.**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:25
|
||||
msgid ""
|
||||
"**Include screenshots and animated GIFs** which show you following the "
|
||||
"described steps and clearly demonstrate the problem. You can use `this "
|
||||
"tool to record GIFs on macOS and Windows "
|
||||
"<http://www.cockos.com/licecap/>`_, and `this tool "
|
||||
"<https://github.com/colinkeenan/silentcast>`_ or `this one "
|
||||
"<https://github.com/GNOME/byzanz>`_ on Linux."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:26
|
||||
msgid ""
|
||||
"**If the problem is related to performance,** please post your machine's "
|
||||
"specs (host and guest machine)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:27
|
||||
msgid ""
|
||||
"**If the problem wasn't triggered by a specific action,** describe what "
|
||||
"you were doing before the problem happened and share more information "
|
||||
"using the guidelines below."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:29
|
||||
msgid "Include details about your configuration and environment:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:31
|
||||
msgid ""
|
||||
"**Which version of ODM are you using?** A stable release? a clone of "
|
||||
"master?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:32
|
||||
msgid "**What's the name and version of the OS you're using?**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:33
|
||||
msgid ""
|
||||
"**Are you running ODM in a virtual machine or Docker?** If so, which VM "
|
||||
"software are you using and which operating systems and versions are used "
|
||||
"for the host and the guest?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:36
|
||||
msgid "Template For Submitting Bug Reports"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:69
|
||||
msgid "Pull Requests"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:71
|
||||
msgid ""
|
||||
"Include screenshots and animated GIFs in your pull request whenever "
|
||||
"possible."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:72
|
||||
msgid "Follow the PEP8 Python Style Guide."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:73
|
||||
msgid "End files with a newline."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:76
|
||||
msgid "Avoid platform-dependent code:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:75
|
||||
msgid "Use require('fs-plus').getHomeDirectory() to get the home directory."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:76
|
||||
msgid "Use path.join() to concatenate filenames."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:77
|
||||
msgid ""
|
||||
"Use os.tmpdir() rather than /tmp when you need to reference the temporary"
|
||||
" directory."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:79
|
||||
msgid "Using a plain return when returning explicitly at the end of a function."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:79
|
||||
msgid "Not return null, return undefined, null, or undefined"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:81
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/contributing.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "How to contribute"
|
||||
#~ msgstr ""
|
||||
|
|
@ -1,78 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/flying.rst:2
|
||||
msgid "Flying Tips"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:4
|
||||
msgid ""
|
||||
"The `Humanitarian OpenStreetMap team <https://www.hotosm.org/>`_ has "
|
||||
"guidelines on `flying for UAV mapping <https://uav-"
|
||||
"guidelines.openaerialmap.org/>`_:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:6
|
||||
msgid ""
|
||||
"`Choosing the right UAV <https://uav-"
|
||||
"guidelines.openaerialmap.org/pages/05-choosing-the-right-uav/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:8
|
||||
msgid ""
|
||||
"`Choosing the right sensor <https://uav-"
|
||||
"guidelines.openaerialmap.org/pages/06-choosing-the-sensor/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:10
|
||||
msgid ""
|
||||
"`Mission preparation <https://uav-guidelines.openaerialmap.org/pages/07"
|
||||
"-preparing-for-the-uav-mission/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:12
|
||||
msgid ""
|
||||
"The guidelines are intended for drone mapping projects on islands, but "
|
||||
"have general use for all drone mappers."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:14
|
||||
msgid ""
|
||||
"See also DroneDeploy's guide on `Making Successful Maps "
|
||||
"<https://support.dronedeploy.com/docs/making-successful-maps>`_, which "
|
||||
"provides great tips on mission planning."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:16
|
||||
msgid ""
|
||||
"Finally, lens distortion is a challenge in projects requiring accurate 3D"
|
||||
" data. See our section in these docs on `Camera Calibration "
|
||||
"<tutorials.html#calibrating-the-camera>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:18
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/flying.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Flying tips"
|
||||
#~ msgstr ""
|
||||
|
|
@ -1,181 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/gcp.rst:3
|
||||
msgid "Ground Control Points"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:5
|
||||
msgid ""
|
||||
"Ground control points are useful for correcting distortions in the data "
|
||||
"and referencing the data to know coordinate systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:7
|
||||
msgid "The format of the GCP file is simple."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:9
|
||||
msgid ""
|
||||
"The first line should contain the name of the projection used for the geo"
|
||||
" coordinates. This can be specified either as a PROJ string (e.g. "
|
||||
"``+proj=utm +zone=10 +ellps=WGS84 +datum=WGS84 +units=m +no_defs``), EPSG"
|
||||
" code (e.g. ``EPSG:4326``) or as a ``WGS84 UTM <zone>[N|S]`` value (eg. "
|
||||
"``WGS84 UTM 16N``)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:10
|
||||
msgid ""
|
||||
"Subsequent lines are the X, Y & Z coordinates, your associated pixels, "
|
||||
"the image filename and optional extra fields, separated by tabs or "
|
||||
"spaces:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:11
|
||||
msgid "Elevation values can be set to \"NaN\" to indicate no value"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:12
|
||||
msgid "The 7th column (optional) typically contains the label of the GCP."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:14
|
||||
msgid "GCP file format::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:20
|
||||
msgid "Example::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:27
|
||||
msgid ""
|
||||
"If you supply a GCP file called ``gcp_list.txt`` then ODM will "
|
||||
"automatically detect it. If it has another name you can specify using "
|
||||
"``--gcp <path>``. If you have a gcp file and want to do georeferencing "
|
||||
"with exif instead, then you can specify ``--use-exif``. If you have high "
|
||||
"precision GPS measurements in your images (RTK) and want to use that "
|
||||
"information along with a gcp file, you can specify ``--force-gps``."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:29
|
||||
msgid ""
|
||||
"`This post has some information about placing Ground Control Targets "
|
||||
"before a flight <http://diydrones.com/profiles/blogs/ground-control-"
|
||||
"points-gcps-for-aerial-photography>`_, but if you already have images, "
|
||||
"you can find your own points in the images post facto. It's important "
|
||||
"that you find high-contrast objects that are found in **at least** 3 "
|
||||
"photos, and that you find a minimum of 5 objects."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:31
|
||||
msgid ""
|
||||
"Sharp corners are good picks for GCPs. You should also place/find the "
|
||||
"GCPs evenly around your survey area."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:33
|
||||
msgid ""
|
||||
"The ``gcp_list.txt`` file must be created in the base of your project "
|
||||
"folder."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:35
|
||||
msgid ""
|
||||
"For good results your file should have a minimum of 15 lines after the "
|
||||
"header (5 points with 3 images to each point)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:39
|
||||
msgid "User Interfaces"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:41
|
||||
msgid "You can use one of two user interfaces for creating GCP files:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:43
|
||||
msgid "`POSM GCPi <https://github.com/posm/posm-gcpi>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:44
|
||||
msgid "`GCP Editor Pro <https://github.com/uav4geo/GCPEditorPro>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:48
|
||||
msgid "POSM GCPi"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:50
|
||||
msgid ""
|
||||
"The POSM GCPi is loaded by default on WebODM. An example is available at "
|
||||
"`the WebODM Demo <http://demo.webodm.org/plugins/posm-gcpi/>`_. To use "
|
||||
"this with known ground control XYZ values, one would do the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:52
|
||||
msgid ""
|
||||
"Create a GCP list that only includes gcp name (this is the label that "
|
||||
"will be seen in the GCP interface), x, y, and z, with a header with a "
|
||||
"proj4 string of your GCPs (make sure they are in a planar coordinate "
|
||||
"system, such as UTM. It should look something like this:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:63
|
||||
msgid ""
|
||||
"Then one can load this GCP list into the interface, load the images, and "
|
||||
"place each of the GCPs in the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:67
|
||||
msgid "GCP Editor Pro"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:69
|
||||
msgid ""
|
||||
"This app needs to be installed separately or can be loaded as a WebODM "
|
||||
"plugin from `https://github.com/uav4geo/GCPEditorPro "
|
||||
"<https://github.com/uav4geo/GCPEditorPro>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:71
|
||||
msgid ""
|
||||
"Create a CSV file that includes the gcp name, northing, easting and "
|
||||
"elevation."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:80
|
||||
msgid ""
|
||||
"Then import the CSV from the main screen and type ``+proj=utm +zone=37 "
|
||||
"+south +ellps=WGS84 +datum=WGS84 +units=m +no_defs`` in the ``EPSG/PROJ``"
|
||||
" box."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:82
|
||||
msgid ""
|
||||
"The following screen will display a map from where to select the GCPs to "
|
||||
"tag and import the respective images."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:85
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/tutorials.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,30 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:01+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/index.rst:8
|
||||
msgid "Welcome to OpenDroneMap's documentation"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/index.rst:40
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/index.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,785 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/installation.rst:4
|
||||
msgid "Installation and Getting Started"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:6
|
||||
msgid ""
|
||||
"This section is excerpted and modified with permission from "
|
||||
"`OpenDroneMap: The Missing Guide <https://odmbook.com>`_, by Piero "
|
||||
"Toffanin."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:8
|
||||
msgid ""
|
||||
"Until recently OpenDroneMap was the term used to refer to a single "
|
||||
"command line application (what is now known as the ODM project). With "
|
||||
"the recent development of a web interface, an API and other tools, "
|
||||
"OpenDroneMap has become an ecosystem of various applications to process, "
|
||||
"analyze and display aerial data. This ecosystem is made of several "
|
||||
"components:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:14
|
||||
msgid ""
|
||||
"**ODM** is the processing engine, which can be used from the command "
|
||||
"line. It takes images as input and produces a variety of outputs, "
|
||||
"including point clouds, 3D models and orthophotos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:20
|
||||
msgid ""
|
||||
"**NodeODM** is a light-weight API built on top of ODM. It allows users "
|
||||
"and applications to access the functions of ODM over a computer network"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:26
|
||||
msgid ""
|
||||
"**WebODM** is a friendly user interface that includes a map viewer, a 3D "
|
||||
"viewer, user logins, a plugin system and many other features that are "
|
||||
"expected of modern drone mapping platforms"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:32
|
||||
msgid ""
|
||||
"**CloudODM** is a small command line client to communicate with ODM via "
|
||||
"the NodeODM API"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:38
|
||||
msgid ""
|
||||
"**PyODM** is a Python SDK for creating tasks via the NodeODM API. We "
|
||||
"cover it in more detail in the “Automated Processing With Python” chapter"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:44
|
||||
msgid ""
|
||||
"**ClusterODM** is a load balancer for connecting together multiple "
|
||||
"NodeODM instances"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:46
|
||||
msgid ""
|
||||
"ODM, NodeODM and WebODM are available on all major platforms (Windows, "
|
||||
"macOS and Linux) via a program called docker, which is required to run "
|
||||
"the software. Docker offers a way to run “containers”. Containers are "
|
||||
"packaged copies of an entire system, its software and its dependencies. "
|
||||
"These containers run within a virtual environment. On Linux this virtual "
|
||||
"environment is available from the operating system and is very efficient."
|
||||
" On macOS and Windows the containers run within a VM, so there’s a bit of"
|
||||
" a overhead. but it’s still very suitable for running the software. Once "
|
||||
"installed users do not have to worry much about docker, as it operates "
|
||||
"(almost) transparently."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:48
|
||||
msgid ""
|
||||
"Without docker it would not be possible to run ODM on Windows or macOS. "
|
||||
"On these platforms ODM cannot run natively. Future development efforts "
|
||||
"are being focused on leveraging the new Windows Subsystem for Linux (WSL)"
|
||||
" and the possibility to make a native port of all dependencies to macOS, "
|
||||
"which is going to make the installation much easier."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:50
|
||||
msgid ""
|
||||
"On Ubuntu Linux 16.04 it’s feasible to run all OpenDroneMap software "
|
||||
"natively. However, because there’s very little performance penalty for "
|
||||
"running docker on Linux and docker is straightforward to setup on this "
|
||||
"platform, we don’t recommend it. On Linux the advantages of "
|
||||
"containerization far outweigh a tiny performance penalty. With docker "
|
||||
"users also get easy one-step updates of the software, so that’s nice."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:54
|
||||
msgid "Hardware Recommendations"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:56
|
||||
msgid "The bare minimum requirements for running the software are:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:59
|
||||
msgid "64bit CPU manufactured on or after 2010"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:60
|
||||
msgid "20 GB of disk space"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:61
|
||||
msgid "4 GB RAM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:63
|
||||
msgid ""
|
||||
"No more than 100-200 images can be processed with the above "
|
||||
"specifications (the software will run out of memory). Recommended "
|
||||
"requirements are:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:65
|
||||
msgid "Latest Generation CPU"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:66
|
||||
msgid "100 GB of disk space"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:67
|
||||
msgid "16 GB RAM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:69
|
||||
msgid ""
|
||||
"The above will allow for a few hundred images to be processed without too"
|
||||
" many issues. A CPU with more cores will allow for faster processing, "
|
||||
"while a graphics card (GPU) currently has no impact on performance. For "
|
||||
"processing more images, add more disk space and RAM linearly to the "
|
||||
"number of images you need to process."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:75
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:77
|
||||
msgid ""
|
||||
"We recommend people use `docker <https://www.docker.com>`_ for running "
|
||||
"ODM, whether you are on Windows, macOS or Linux."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:80
|
||||
msgid "Windows"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:82
|
||||
msgid ""
|
||||
"To run OpenDroneMap you need at least Windows 7. Previous versions of "
|
||||
"Windows are not supported."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:86 ../../source/installation.rst:238
|
||||
msgid "Step 1. Check Virtualization Support"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:88
|
||||
msgid ""
|
||||
"Docker requires a feature from your CPU called virtualization, which "
|
||||
"allows it to run virtual machines (VMs). Make sure you have it enabled! "
|
||||
"Sometimes this is disabled. To check, on Windows 8 or higher you can open"
|
||||
" the **Task Manager** (press CTRL+SHIFT+ESC) and switch to the "
|
||||
"**Performance** tab."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:94
|
||||
msgid "*Virtualization should be enabled*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:96
|
||||
msgid ""
|
||||
"On Windows 7 to see if you have virtualization enabled you can use the "
|
||||
"`Microsoft® Hardware-Assisted Virtualization Detection Tool <http:// "
|
||||
"www.microsoft.com/en-us/download/details.aspx?id=592>`_ instead."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:99
|
||||
msgid ""
|
||||
"If virtualization is disabled, you’ll need to enable it. The procedure "
|
||||
"unfortunately is a bit different for each computer model, so the best way"
|
||||
" to do this is to look up on a search engine “how to enable vtx for <type"
|
||||
" your computer model here>”. Often times it’s a matter of restarting the "
|
||||
"computer, immediately pressing F2 or F12 during startup, navigating the "
|
||||
"boot menu and changing the settings to enable virtualization (often "
|
||||
"called “VT-X”)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:105
|
||||
msgid ""
|
||||
"*Common keys to press at computer startup to access the boot menu for "
|
||||
"various PC vendors*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:108 ../../source/installation.rst:257
|
||||
msgid "Step 2. Install Requirements"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:110
|
||||
msgid "First, you’ll need to install:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:112
|
||||
msgid "Git: https://git-scm.com/downloads"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:113
|
||||
msgid "Python (latest version 3): https://www.python.org/downloads/windows/"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:115
|
||||
msgid ""
|
||||
"For Python 3, make sure you check **Add Python 3.x to PATH** during the "
|
||||
"installation."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:121
|
||||
msgid ""
|
||||
"*Don’t forget to add the Python executable to your PATH (so that you can "
|
||||
"run commands with it)*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:123
|
||||
msgid ""
|
||||
"Then, only if you are on Windows 10 Home, Windows 8 (any version) or "
|
||||
"Windows 7 (any version), install:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:125
|
||||
msgid ""
|
||||
"Docker Toolbox: "
|
||||
"https://github.com/docker/toolbox/releases/download/v18.09.3/DockerToolbox-18.09.3.exe"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:127
|
||||
msgid ""
|
||||
"If you are on Windows 10 Professional or a newer version, you should "
|
||||
"install instead:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:129
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Docker for Windows: "
|
||||
"https://download.docker.com/win/stable/Docker%20for%20Windows%20Installer.exe"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:131
|
||||
msgid ""
|
||||
"Please do **NOT** install both docker programs. They are different and "
|
||||
"will create a mess if they are both installed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:133
|
||||
msgid ""
|
||||
"After installing docker, launch it from the Desktop icon that is created "
|
||||
"from the installation (**Docker Quickstart** in the case of Docker "
|
||||
"Toolbox, **Docker for Windows** for Docker for Windows). This is "
|
||||
"important, do not skip this step. If there are errors, follow the prompts"
|
||||
" on screen to fix them."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:136 ../../source/installation.rst:299
|
||||
msgid "Step 3. Check Memory and CPU Allocation"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:138
|
||||
msgid ""
|
||||
"Docker on Windows works by running a VM in the background (think of a VM "
|
||||
"as a “computer emulator”). This VM has a certain amount of memory "
|
||||
"allocated and WebODM can only use as much memory as it’s allocated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:140
|
||||
msgid ""
|
||||
"If you installed Docker Toolbox (see below if you installed Docker for "
|
||||
"Windows instead):"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:142
|
||||
msgid "Open the **VirtualBox Manager** application"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:143
|
||||
msgid ""
|
||||
"Right click the **default** VM and press **Close (ACPI Shutdown)** to "
|
||||
"stop the machine"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:144
|
||||
msgid "Right click the **default** VM and press **Settings...**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Move the **Base Memory** slider from the **System** paneland allocate "
|
||||
"60-70% of all available memory, optionally adding 50% of the available "
|
||||
"processors from the **Processor** tab also"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:151
|
||||
msgid "*VirtualBox default VM settings*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:153
|
||||
msgid "Then press **OK**, right click the **default** VM and press **Start**."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:155
|
||||
msgid "If you installed Docker for Windows instead:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:157
|
||||
msgid "Look in the system tray and right click the “white whale” icon."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:158
|
||||
msgid "From the menu, press **Settings...**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:159
|
||||
#, python-format
|
||||
msgid ""
|
||||
"From the panel, click **Advanced** and use the sliders to allocate 60-70%"
|
||||
" of available memory and use half of all available CPUs."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:160
|
||||
msgid "Press **Apply**."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:166
|
||||
msgid "*Step 1 Docker icon*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:172
|
||||
msgid "*Step 3 & 4 Docker settings*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:175
|
||||
msgid "Step 4. Download WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:177
|
||||
msgid "Open the **Git Gui** program that comes installed with Git. From there:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:179
|
||||
msgid "When Git Gui opens, click 'Clone Existing Repository' option"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:180
|
||||
msgid "In **Source Location** type: https://github.com/OpenDroneMap/WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:181
|
||||
msgid ""
|
||||
"In **Target Directory** click browse and navigate to a folder of your "
|
||||
"choosing (create one if necessary)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:182
|
||||
msgid "Press **Clone**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:188
|
||||
msgid "*Git Gui*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:190
|
||||
msgid "If the download succeeded, you should now see this window:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:196
|
||||
msgid "*Git Gui after successful download (clone)*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:198
|
||||
msgid ""
|
||||
"Go to the **Repository** menu, then click **Create Desktop Icon**. This "
|
||||
"will allow you to come back to this application easily in the future."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:201
|
||||
msgid "Step 4. Launch WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:203
|
||||
msgid ""
|
||||
"From Git Gui, go to the **Repository** menu, then click **Git Bash**. "
|
||||
"From the command line terminal type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:209
|
||||
msgid ""
|
||||
"Several components will download to your machine at this point, including"
|
||||
" WebODM, NodeODM and ODM. After the download you should be greeted by the"
|
||||
" following screen:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:215
|
||||
msgid "*Console output after starting WebODM for the first time*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:217
|
||||
msgid ""
|
||||
"If you are using Docker for Windows, open a web browser to "
|
||||
"http://localhost:8000"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:218
|
||||
msgid ""
|
||||
"If you are using Docker Toolbox, find the IP address to connect to by "
|
||||
"typing:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:224
|
||||
msgid "You should get a result like the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:230
|
||||
msgid ""
|
||||
"Then connect to http://192.168.1.100:8000 (replacing the IP address with "
|
||||
"the proper one)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:233
|
||||
msgid "macOS"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:235
|
||||
msgid ""
|
||||
"Most modern (post 2010) Mac computers running macOS Sierra 10.12 or "
|
||||
"higher can run OpenDroneMap using docker, as long as hardware "
|
||||
"virtualization is supported (see below)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:240
|
||||
msgid "Open a Terminal window and type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:246
|
||||
msgid "You will get a response similar to the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:252
|
||||
msgid ""
|
||||
"If the result is *kern.hv_support: 1*, then your Mac is supported! "
|
||||
"Continue with Step 2."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:254
|
||||
msgid ""
|
||||
"If the result is *kern.hv_support: 0*, unfortunately it means your Mac is"
|
||||
" too old to run OpenDroneMap. :("
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:259
|
||||
msgid "There are only two programs to install:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:261
|
||||
msgid "Docker: https://download.docker.com/mac/stable/Docker.dmg"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:262
|
||||
msgid "Git: https://sourceforge.net/projects/git-osx-installer/files/"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:264
|
||||
msgid ""
|
||||
"After installing docker you should find an icon that looks like a whale "
|
||||
"in the task bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:270
|
||||
msgid "*Docker app running*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:272
|
||||
msgid ""
|
||||
"You can verify that docker is running properly by opening the "
|
||||
"**Terminal** app and typing:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:278
|
||||
msgid "Which should return"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:284
|
||||
msgid "To verify that git is installed, simply type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:290
|
||||
msgid "Which should return something similar to the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:296
|
||||
msgid ""
|
||||
"If you get a “bash: git: command not found”, try to restart your "
|
||||
"**Terminal** app and double-check for any errors during the install "
|
||||
"process."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:301
|
||||
msgid ""
|
||||
"Docker on macOS works by running a VM in the background (think of it as a"
|
||||
" “computer emulator”). This VM has a certain amount of memory allocated "
|
||||
"and WebODM can only use as much memory as it’s allocated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:303
|
||||
msgid "Right click the whale icon from the task bar and click **Preferences**..."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:304
|
||||
msgid "Select the **Advanced** tab"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:305
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Adjust the CPUs slider to use half of all available CPUs and the memory "
|
||||
"to use 60-70% of all available memory"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:306
|
||||
msgid "Press **Apply & Restart**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:312
|
||||
msgid "*Docker advanced settings*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:315
|
||||
msgid "Step 4. Download and Launch WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:317
|
||||
msgid "From a **Terminal** type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:325 ../../source/installation.rst:426
|
||||
msgid "Then open a web browser to http://localhost:8000."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:328
|
||||
msgid "Linux"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:330
|
||||
msgid ""
|
||||
"OpenDroneMap can run on any Linux distribution that supports docker. "
|
||||
"According to `docker’s documentation website "
|
||||
"<https://docs.docker.com/install/>`_ the officially supported "
|
||||
"distributions are CentOS, Debian, Ubuntu and Fedora, with static binaries"
|
||||
" available for others. If you have to pick a distribution solely for "
|
||||
"running OpenDroneMap, Ubuntu is the recommended way to go."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:333
|
||||
msgid "Step 1. Install Requirements"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:335
|
||||
msgid "There are four programs that need to be installed:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:337
|
||||
msgid "Docker"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:338
|
||||
msgid "Git"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:339
|
||||
msgid "Python (2 or 3)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:340
|
||||
msgid "Pip"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:342
|
||||
msgid ""
|
||||
"We cannot possibly cover the installation process for every Linux "
|
||||
"distribution out there, so we’ll limit the instructions to those that are"
|
||||
" distributions officially supported by docker. In all cases it’s just a "
|
||||
"matter of opening a terminal prompt and typing a few commands."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:345
|
||||
msgid "Install on Ubuntu / Debian"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:347 ../../source/installation.rst:359
|
||||
#: ../../source/installation.rst:370 ../../source/installation.rst:381
|
||||
msgid "Commands to type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:357
|
||||
msgid "Install on CentOS / RHEL"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:368
|
||||
msgid "Install on Fedora"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:379
|
||||
msgid "Install on Arch"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:388
|
||||
msgid "Step 2. Check Additional Requirements"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:390
|
||||
msgid ""
|
||||
"In addition to the three programs above, the dockercompose script is also"
|
||||
" needed. Sometimes it’s already installed with docker, but sometimes it "
|
||||
"isn’t. To verify if it’s installed try to type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:396
|
||||
msgid "You should see somethings similar to the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:402
|
||||
msgid "If instead you get something similar to the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:408
|
||||
msgid "you can install it by using pip:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:416
|
||||
msgid "Step 3. Download and Launch WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:418
|
||||
msgid "From a terminal type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:429
|
||||
msgid "Basic Commands and Troubleshooting"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:431
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The cool thing about using docker is that 99% of the tasks you’ll ever "
|
||||
"need to perform while using WebODM can be done via the ./webodm.sh "
|
||||
"script. You have already encountered one of them:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:437
|
||||
msgid ""
|
||||
"which takes care of starting WebODM and setting up a default processing "
|
||||
"node (node-odm-1). If you want to stop WebODM, you can already guess what"
|
||||
" the command is:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:443
|
||||
msgid ""
|
||||
"There are several other commands you can use, along with different flags."
|
||||
" Flags are parameters passed to the ./webodm.sh command and are typically"
|
||||
" prefixed with “–”. The **port** flag for example instructs WebODM to use"
|
||||
" a different network port:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:449
|
||||
msgid "Other useful commands are listed below:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:468
|
||||
msgid ""
|
||||
"`The community forum <https://community.opendronemap.org>`_ is a great "
|
||||
"place to ask for help if you get stuck during any of the installation"
|
||||
" steps and for general questions on using the ./webodm.sh script."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:471
|
||||
msgid "Hello, WebODM!"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:473
|
||||
msgid ""
|
||||
"After running ./webodm.sh start and opening WebODM in the browser, you "
|
||||
"will be greeted with a welcome message and will be asked to create the "
|
||||
"first user. Take some time to familiarize yourself with the web interface"
|
||||
" and explore its various menus."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:479
|
||||
msgid "*WebODM Dashboard*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:481
|
||||
msgid ""
|
||||
"Notice that under the **Processing Nodes** menu there’s a \"node-odm-1\" "
|
||||
"node already configured for you to use. This is a NodeODM node and has "
|
||||
"been created automatically by WebODM. This node is running on the same "
|
||||
"machine as WebODM."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:483
|
||||
msgid ""
|
||||
"If you’ve made it this far, congratulations! Now it’s time to start "
|
||||
"processing some data."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:490
|
||||
msgid "Running on more than one machine"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:492
|
||||
msgid ""
|
||||
"**Optionally:** If you have another computer, you can repeat the "
|
||||
"installation process (install docker, git, python, etc.) and launch a new"
|
||||
" NodeODM node by typing from a Terminal/Git Bash window:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:498
|
||||
msgid ""
|
||||
"The above command asks docker to launch a new container using the "
|
||||
"opendronemap/nodeodm image from Docker Hub (the latest version of "
|
||||
"NodeODM), using port 3000, setting a maximum number of concurrent tasks "
|
||||
"to 1 and to protect the node from unauthorized access using the password "
|
||||
"\"secret\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:500
|
||||
msgid ""
|
||||
"From WebODM you can then press the **Add New** button under **Processing "
|
||||
"Nodes**. For the **hostname/IP** field type the IP of the second "
|
||||
"computer. For the **port** field type “3000”. For the **token** field "
|
||||
"type “secret”. You can also add an optional **label** for your node, such"
|
||||
" as “second computer”. Then press **Save**."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:502
|
||||
msgid ""
|
||||
"If everything went well, you should now have two processing nodes! You "
|
||||
"will be able to process multiple tasks in parallel using two different "
|
||||
"machines."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:504
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/installation.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "In **Source Location** type: https://github.com/Open-DroneMap/WebODM"
|
||||
#~ msgstr ""
|
||||
|
|
@ -1,275 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:01+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/large.rst:4
|
||||
msgid "Splitting Large Datasets"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:6
|
||||
msgid ""
|
||||
"Starting with ODM version ``0.6.0`` you can split up very large datasets "
|
||||
"into manageable chunks (called submodels), running the pipeline on each "
|
||||
"chunk, and then producing merged DEMs, orthophotos and point clouds. The "
|
||||
"process is referred to as \"split-merge\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:8
|
||||
msgid ""
|
||||
"Why might you use the split-merge pipeline? If you have a very large "
|
||||
"number of images in your dataset, split-merge will help make the "
|
||||
"processing more manageable on a large machine (it will require less "
|
||||
"memory). If you have many machines all connected to the same network you "
|
||||
"can also process the submodels in parallel, thus allowing for horizontal "
|
||||
"scaling and processing thousands of images more quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:10
|
||||
msgid ""
|
||||
"Split-merge works in WebODM out of the box as long as the processing "
|
||||
"nodes support split-merge, by enabling the ``--split`` option when "
|
||||
"creating a new task."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:13
|
||||
msgid "Calibrate images"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:15
|
||||
msgid ""
|
||||
"Image calibration is recommended (but not required) for large datasets "
|
||||
"because error propagation due to image distortion could cause a bowl "
|
||||
"effect on the models. Calibration instructions can be found at "
|
||||
"`Calibrate Images <tutorials.html#calibrating-the-camera>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:21
|
||||
msgid ""
|
||||
"Bowling effect on point cloud over 13,000+ image dataset collected by "
|
||||
"World Bank Tanzania over the flood prone Msimbasi Basin, Dar es Salaam, "
|
||||
"Tanzania."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:24
|
||||
msgid "Local Split-Merge"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:26
|
||||
msgid ""
|
||||
"Splitting a dataset into more manageable submodels and sequentially "
|
||||
"processing all submodels on the same machine is easy! Just use "
|
||||
"``--split`` and ``--split-overlap`` to decide the the average number of "
|
||||
"images per submodels and the overlap (in meters) between submodels "
|
||||
"respectively"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:32
|
||||
msgid ""
|
||||
"If you already know how you want to split the dataset, you can provide "
|
||||
"that information and it will be used instead of the clustering algorithm."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:34
|
||||
msgid ""
|
||||
"The grouping can be provided by adding a file named image_groups.txt in "
|
||||
"the main dataset folder. The file should have one line per image. Each "
|
||||
"line should have two words: first the name of the image and second the "
|
||||
"name of the group it belongs to. For example::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:42
|
||||
msgid ""
|
||||
"will create 3 submodels. Make sure to pass ``--split-overlap 0`` if you "
|
||||
"manually provide a ``image_groups.txt`` file."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:46
|
||||
msgid "Distributed Split-Merge"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:48
|
||||
msgid ""
|
||||
"ODM can also automatically distribute the processing of each submodel to "
|
||||
"multiple machines via `NodeODM "
|
||||
"<https://github.com/OpenDroneMap/NodeODM>`_ nodes, orchestrated via "
|
||||
"`ClusterODM <https://github.com/OpenDroneMap/ClusterODM>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:55
|
||||
msgid "Getting Started with Distributed Split-Merge"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:57
|
||||
msgid "The first step is start ClusterODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:63
|
||||
msgid ""
|
||||
"Then on each machine you want to use for processing, launch a NodeODM "
|
||||
"instance via"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:69
|
||||
msgid ""
|
||||
"Connect via telnet to ClusterODM and add the IP addresses/port of the "
|
||||
"machines running NodeODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:84
|
||||
msgid "Make sure you are running version ``1.5.1`` or higher of the NodeODM API."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:86
|
||||
msgid ""
|
||||
"At this point, simply use the ``--sm-cluster`` option to enable "
|
||||
"distributed split-merge"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:93
|
||||
msgid "Understanding the Cluster"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:95
|
||||
msgid ""
|
||||
"When connected via telnet, it is possible to interrogate what is "
|
||||
"happening on the cluster. For example, we can use the command HELP to "
|
||||
"find out available commands"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:118
|
||||
msgid ""
|
||||
"If, for example, the NodeODM instance wasn't active when ClusterODM "
|
||||
"started, we might list nodes and see something as follows"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:125
|
||||
msgid ""
|
||||
"To address this, we can start up our local node (if not already started),"
|
||||
" and then perform a ``NODE UPDATE``"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:135
|
||||
msgid "Accessing the Logs"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:137
|
||||
msgid ""
|
||||
"While a process is running, it is also possible to list the tasks, and "
|
||||
"view the task output"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:145
|
||||
msgid "Autoscaling ClusterODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:147
|
||||
msgid ""
|
||||
"ClusterODM also includes the option to autoscale on multiple platforms, "
|
||||
"including, to date, Amazon and Digital Ocean. This allows users to reduce"
|
||||
" costs associated with always-on instances as well as being able to scale"
|
||||
" processing based on demand."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:149
|
||||
msgid "To setup autoscaling you must:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:151
|
||||
msgid "Have a functioning version of NodeJS installed and then install ClusterODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:159
|
||||
msgid "Make sure docker-machine is installed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:160
|
||||
msgid "Setup a S3-compatible bucket for storing results."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:161
|
||||
msgid ""
|
||||
"Create a configuration file for `DigitalOcean "
|
||||
"<https://github.com/OpenDroneMap/ClusterODM/blob/master/docs/digitalocean.md>`_"
|
||||
" or `Amazon Web Services "
|
||||
"<https://github.com/OpenDroneMap/ClusterODM/blob/master/docs/aws.md>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:163
|
||||
msgid "You can then launch ClusterODM with"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:169
|
||||
msgid "You should see something similar to following messages in the console"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:177
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You should always have at least one static NodeODM node attached to "
|
||||
"ClusterODM, even if you plan to use the autoscaler for all processing. If"
|
||||
" you setup auto scaling, you can't have zero nodes and rely 100% on the "
|
||||
"autoscaler. You need to attach a NodeODM node to act as the \"reference "
|
||||
"node\" otherwise ClusterODM will not know how to handle certain requests "
|
||||
"(for the forwarding the UI, for validating options prior to spinning up "
|
||||
"an instance, etc.). For this purpose, you should add a \"dummy\" NodeODM "
|
||||
"node and lock it"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:187
|
||||
msgid "This way all tasks will be automatically forwarded to the autoscaler."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:190
|
||||
msgid "Limitations"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:192
|
||||
msgid ""
|
||||
"The 3D textured meshes are currently not being merged as part of the "
|
||||
"workflow (only point clouds, DEMs and orthophotos are)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:194
|
||||
msgid ""
|
||||
"GCPs are fully supported, however, there needs to be at least 3 GCP "
|
||||
"points on each submodel for the georeferencing to take place. If a "
|
||||
"submodel has fewer than 3 GCPs, a combination of the remaining GCPs + "
|
||||
"EXIF data will be used instead (which is going to be less accurate). We "
|
||||
"recommend using the ``image_groups.txt`` file to accurately control the "
|
||||
"submodel split when using GCPs."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:197
|
||||
msgid "Acknowledgments"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:198
|
||||
msgid ""
|
||||
"Huge props to Pau and the folks at Mapillary for their amazing "
|
||||
"contributions to OpenDroneMap through their OpenSfM code, which is a key "
|
||||
"component of the split-merge pipeline. We look forward to further pushing"
|
||||
" the limits of OpenDroneMap and seeing how big a dataset we can process."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:200
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/large.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,77 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/multispectral.rst:2
|
||||
msgid "Multispectral Support"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:4
|
||||
msgid ""
|
||||
"Since version 0.9.9 ODM has basic support for radiometric normalization, "
|
||||
"which is able to generate reflectance orthophotos from multispectral "
|
||||
"cameras. Multispectral cameras capture multiple shots of the scene using "
|
||||
"different band sensors."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:7
|
||||
msgid "Hardware"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:9
|
||||
msgid ""
|
||||
"While we aim to support as many cameras as possible, multispectral "
|
||||
"support has been developed using the following cameras, so they will work"
|
||||
" better:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:11
|
||||
msgid "`MicaSense RedEdge-MX and Altum <https://www.micasense.com/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:12
|
||||
msgid "`Sentera 6X <https://sentera.com/6x/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:14
|
||||
msgid ""
|
||||
"Other cameras might also work. You can help us expand this list by "
|
||||
"`sharing datasets <https://community.opendronemap.org/c/datasets/10>`_ "
|
||||
"captured with other cameras."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:17
|
||||
msgid "Usage"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:19
|
||||
msgid ""
|
||||
"Process all the images from all bands at once (do not separate the bands "
|
||||
"into multiple folders) and pass the `--radiometric-calibration` parameter"
|
||||
" to enable radiometric normalization. If the images are part of a multi-"
|
||||
"camera setup, the resulting orthophoto will have N bands, one for each "
|
||||
"camera (+ alpha)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:25
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/multispectral.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,141 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/outputs.rst:2
|
||||
msgid "OpenDroneMap Outputs"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:4
|
||||
msgid "Listed below are some of the useful outputs ODM produces."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:7
|
||||
msgid "Point Cloud"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:9
|
||||
msgid ""
|
||||
"``odm_georeferencing/odm_georeferenced_model.ply/laz/csv`` -- The "
|
||||
"georeferenced point cloud in different file formats"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:15
|
||||
msgid ""
|
||||
"*Point cloud over State University Zanzibar, courtesy of* `Khadija "
|
||||
"Abdullah Ali <https://www.linkedin.com/in/khadija-abdulla-ali-"
|
||||
"56b4044a/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:19
|
||||
msgid "3D Textured Model"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:21
|
||||
msgid ""
|
||||
"``odm_texturing/odm_textured_model.obj`` -- The textured surface mesh "
|
||||
"``odm_texturing/odm_textured_model_geo.obj`` -- The georeferenced and "
|
||||
"textured surface mesh"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:24
|
||||
msgid ""
|
||||
"You can access the point cloud and textured meshes using MeshLab. Open "
|
||||
"MeshLab, and choose File:Import Mesh and choose your textured mesh from a"
|
||||
" location similar to the following: "
|
||||
"``odm_texturing\\odm_textured_model.obj``"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:30
|
||||
msgid ""
|
||||
"*Textured mesh courtesy of* `OpenDroneMap "
|
||||
"<https://twitter.com/opendronemap>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:33
|
||||
msgid "Orthophoto"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:35
|
||||
msgid ""
|
||||
"``odm_orthophoto/odm_orthphoto.png`` -- The orthophoto, but this is a "
|
||||
"simple png, which doesn't have any georeferencing information"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:37
|
||||
msgid ""
|
||||
"``odm_orthophoto/odm_orthphoto.tif`` -- GeoTIFF Orthophoto. You can use "
|
||||
"it in QGIS as a raster layer."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:43
|
||||
msgid ""
|
||||
"*Orthophoto over State University Zanzibar, courtesy of* `Khadija "
|
||||
"Abdullah Ali <https://www.linkedin.com/in/khadija-abdulla-ali-"
|
||||
"56b4044a/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:46
|
||||
msgid "DTM/DSM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:48
|
||||
msgid ""
|
||||
"DTM/DSM will only be created if the ``--dtm`` or ``--dsm`` options are "
|
||||
"used. See `tutorial on elevation models "
|
||||
"<https://docs.opendronemap.org/tutorials.html#creating-digital-elevation-"
|
||||
"models>`_ for more options in creating."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:50
|
||||
msgid "Data will be stored in:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:52
|
||||
msgid "``odm_dem/dtm.tif``"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:53
|
||||
msgid "``odm_dem/dsm.tif``"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:59
|
||||
msgid ""
|
||||
"*Digital surface model over State University Zanzibar, courtesy of* "
|
||||
"`Khadija Abdullah Ali <https://www.linkedin.com/in/khadija-abdulla-ali-"
|
||||
"56b4044a/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:62
|
||||
msgid "List of all outputs"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:109
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/outputs.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "*Textured mesh over State University "
|
||||
#~ "Zanzibar, courtesy of* `Khadija Abdullah "
|
||||
#~ "Ali <https://www.linkedin.com/in/khadija-abdulla-"
|
||||
#~ "ali-56b4044a/>`_"
|
||||
#~ msgstr ""
|
||||
|
|
@ -1,92 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/requesting-features.rst:2
|
||||
msgid "How To Request Features"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:4
|
||||
msgid ""
|
||||
"All software needs user feedback and feature requests, to grow and "
|
||||
"maintain alignment with the needs of its users."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:7
|
||||
msgid ""
|
||||
"OpenDroneMap is FOSS software. Free and open source (FOSS) projects are "
|
||||
"interesting from the inside and outside: from the outside, successful "
|
||||
"ones feel like they should be able to do anything, and it’s hard to know "
|
||||
"what a reasonable request is. From the inside of a project, they can feel"
|
||||
" very resource constrained: largely by time, money, and opportunity "
|
||||
"overload."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:13
|
||||
msgid ""
|
||||
"A feature request can be submitted as issues on the applicable Github "
|
||||
"repository (e.g., `WebODM "
|
||||
"<https://github.com/OpenDroneMap/WebODM/issues>`_ or `ODM "
|
||||
"<https://github.com/OpenDroneMap/ODM/issues>`_ or similar) or more simply"
|
||||
" as a discussion topic on `the community forum "
|
||||
"<https://community.opendronemap.org/>`_. Try to start by searching these "
|
||||
"sources to see if someone else has already brought it up. Sometimes a "
|
||||
"feature is already in the works, or has at least been discussed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:19
|
||||
msgid ""
|
||||
"And importantly, the trick is to listen: if someone within the project "
|
||||
"says: \"This is a big lift, we need MONEY or TIME or SOMEONE TO HELP CODE"
|
||||
" IT\" (or possibly a combination of the three) then there are two answers"
|
||||
" that work really well in response:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:23
|
||||
msgid ""
|
||||
"*Ok. I didn’t know it was a big feature request! I hope someone comes "
|
||||
"along with the necessary resources. As a community member, I would be "
|
||||
"happy to be an early user and tester!*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:25
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:27
|
||||
msgid ""
|
||||
"*Let’s figure out if we can put together the resources to get this done! "
|
||||
"Here’s what I can contribute toward it: …*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:29
|
||||
msgid ""
|
||||
"We are glad you are excited to see new features added to the project. "
|
||||
"Some new features need support, and some are easier to implement. We'll "
|
||||
"do our best to help you understand where your request falls, and we "
|
||||
"appreciate any support you can provide."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:33
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/requesting-"
|
||||
"features.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:01+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/resources.rst:2
|
||||
msgid "Additional References"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:5
|
||||
msgid "For Users"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:7
|
||||
msgid "The following resources are a good place to start:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:9
|
||||
msgid "`README page for ODM <https://github.com/OpenDroneMap/OpenDroneMap>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:10
|
||||
msgid "`README page for WebODM <https://github.com/OpenDroneMap/WebODM>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:11
|
||||
msgid ""
|
||||
"`README page for NodeODM <https://github.com/OpenDroneMap/node-"
|
||||
"OpenDroneMap>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:12
|
||||
msgid ""
|
||||
"`Ground Control Points Format Specification "
|
||||
"<https://github.com/mapillary/OpenSfM/blob/master/doc/source/gcp.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:13
|
||||
msgid "`OpenDroneMap: The Missing Guide <https://odmbook.com/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:16
|
||||
msgid "For Developers"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:18
|
||||
msgid "In addition to user resources, we recommend to also read the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:20
|
||||
msgid "WebODM documentation: https://docs.webodm.org"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:21
|
||||
msgid ""
|
||||
"NodeODM API specification: "
|
||||
"https://github.com/OpenDroneMap/NodeODM/blob/master/docs/index.adoc"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:22
|
||||
msgid ""
|
||||
"Overview of the ODM pipeline: http://community.opendronemap.org/t/where-"
|
||||
"can-i-find-background-information-on-the-concepts-of-odm/665/2"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:23
|
||||
msgid ""
|
||||
"We keep a `section in our forum dedicated to research papers "
|
||||
"<http://community.opendronemap.org/c/ideas-proposals/research-papers>`_. "
|
||||
"This is a valuable place where to read more about state of the art "
|
||||
"research related to structure from motion, multi-view stereo, meshing, "
|
||||
"texturing, etc. which can be used to improve the software."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/resources.rst:26
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/api.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,815 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/tutorials.rst:5
|
||||
msgid "Tutorials"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:7
|
||||
msgid "Below you will find instructions for some common use cases."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:11
|
||||
msgid "Creating High Quality Orthophotos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:17
|
||||
msgid ""
|
||||
"Without any parameter tweaks, ODM chooses a good compromise between "
|
||||
"quality, speed and memory usage. If you want to get higher quality "
|
||||
"results, you need to tweak some parameters:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:19
|
||||
msgid ""
|
||||
"``--orthophoto-resolution`` is the resolution of the orthophoto in "
|
||||
"cm/pixel. Decrease this value for a higher resolution result."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:20
|
||||
msgid ""
|
||||
"``--ignore-gsd`` is a flag that instructs ODM to skip certain memory and "
|
||||
"speed optimizations that directly affect the orthophoto. Using this flag "
|
||||
"will increase runtime and memory usage, but may produce sharper results."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:21
|
||||
msgid ""
|
||||
"``--texturing-nadir-weight`` should be increased to ``29-32`` in urban "
|
||||
"areas to reconstruct better edges of roofs. It should be decreased to "
|
||||
"``0-6`` in grassy / flat areas."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:22
|
||||
msgid "``--texturing-data-term`` should be set to `area` in forest areas."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:23
|
||||
msgid ""
|
||||
"``--mesh-size`` should be increased to `300000-600000` and `--mesh-"
|
||||
"octree-depth`` should be increased to `10-11` in urban areas to recreate "
|
||||
"better buildings / roofs."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:27
|
||||
msgid "Calibrating the Camera"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:29
|
||||
msgid ""
|
||||
"Camera calibration is a special challenge with commodity cameras. "
|
||||
"Temperature changes, vibrations, focus, and other factors can affect the "
|
||||
"derived parameters with substantial effects on resulting data. Automatic "
|
||||
"or self calibration is possible and desirable with drone flights, but "
|
||||
"depending on the flight pattern, automatic calibration may not remove all"
|
||||
" distortion from the resulting products. James and Robson (2014) in their"
|
||||
" paper `Mitigating systematic error in topographic models derived from "
|
||||
"UAV and ground‐based image networks "
|
||||
"<https://onlinelibrary.wiley.com/doi/full/10.1002/esp.3609>`_ address how"
|
||||
" to minimize the distortion from self-calibration."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:35
|
||||
msgid ""
|
||||
"*Bowling effect on point cloud over 13,000+ image dataset collected by "
|
||||
"World Bank Tanzania over the flood prone Msimbasi Basin, Dar es Salaam, "
|
||||
"Tanzania.*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:37
|
||||
msgid ""
|
||||
"To mitigate this effect, there are a few options but the simplest are as "
|
||||
"follows: fly two patterns separated by 20°, and rather than having a "
|
||||
"nadir (straight down pointing) camera, use one that tilts forward by 5°."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:45
|
||||
msgid ""
|
||||
"As this approach to flying can be take longer than typical flights, a "
|
||||
"pilot or team can fly a small area using the above approach. OpenDroneMap"
|
||||
" will generate a calibration file called cameras.json that then can be "
|
||||
"imported to be used to calibrate another flight that is more efficiently "
|
||||
"flown."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:47
|
||||
msgid ""
|
||||
"Alternatively, the following experimental method can be applied: fly with"
|
||||
" much lower overlap, but two *crossgrid* flights (sometimes called "
|
||||
"crosshatch) separated by 20° with a 5° forward facing camera."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:49
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Crossgrid overlap percentages can be lower than parallel flights. To get "
|
||||
"good 3D results, you will require 68% overlap and sidelap for an "
|
||||
"equivalent 83% overlap and sidelap."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:50
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To get good 2D and 2.5D (digital elevation model) results, you will "
|
||||
"require 42% overlap and sidelap for an equivalent 70% overlap and "
|
||||
"sidelap."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:56
|
||||
msgid ""
|
||||
"Vertically separated flight lines also improve accuracy, but less so than"
|
||||
" a camera that is forward facing by 5°."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:62
|
||||
msgid ""
|
||||
"From James and Robson (2014), `CC BY 4.0 "
|
||||
"<https://creativecommons.org/licenses/by/4.0>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:66
|
||||
msgid "Creating Digital Elevation Models"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:68
|
||||
msgid ""
|
||||
"By default ODM does not create DEMs. To create a digital terrain model, "
|
||||
"make sure to pass the ``--dtm`` flag. To create a digital surface model, "
|
||||
"be sure to pass the ``--dsm`` flag."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:74
|
||||
msgid ""
|
||||
"For DTM generation, a Simple Morphological Filter (smrf) is used to "
|
||||
"classify points in ground vs. non-ground and only the ground points are "
|
||||
"used. The ``smrf`` filter can be controlled via several parameters:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:76
|
||||
msgid ""
|
||||
"``--smrf-scalar`` scaling value. Increase this parameter for terrains "
|
||||
"with lots of height variation."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:77
|
||||
msgid ""
|
||||
"``--smrf-slope`` slope parameter, which is a measure of \"slope "
|
||||
"tolerance\". Increase this parameter for terrains with lots of height "
|
||||
"variation. Should be set to something higher than 0.1 and not higher than"
|
||||
" 1.2."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:78
|
||||
msgid ""
|
||||
"``--smrf-threshold`` elevation threshold. Set this parameter to the "
|
||||
"minimum height (in meters) that you expect non-ground objects to be."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:79
|
||||
msgid ""
|
||||
"``--smrf-window`` window radius parameter (in meters) that corresponds to"
|
||||
" the size of the largest feature (building, trees, etc.) to be removed. "
|
||||
"Should be set to a value higher than 10."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:81
|
||||
msgid ""
|
||||
"Changing these options can affect the result of DTMs significantly. The "
|
||||
"best source to read to understand how the parameters affect the output is"
|
||||
" to read the original paper `An improved simple morphological filter for "
|
||||
"the terrain classification of airborne LIDAR data "
|
||||
"<https://www.researchgate.net/publication/258333806_An_Improved_Simple_Morphological_Filter_for_the_Terrain_Classification_of_Airborne_LIDAR_Data>`_"
|
||||
" (PDF freely available)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:83
|
||||
msgid "Overall the ``--smrf-threshold`` option has the biggest impact on results."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:85
|
||||
msgid ""
|
||||
"SMRF is good at avoiding Type I errors (small number of ground points "
|
||||
"mistakenly classified as non-ground) but only \"acceptable\" at avoiding "
|
||||
"Type II errors (large number non-ground points mistakenly classified as "
|
||||
"ground). This needs to be taken in consideration when generating DTMs "
|
||||
"that are meant to be used visually, since objects mistaken for ground "
|
||||
"look like artifacts in the final DTM."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:91
|
||||
msgid "Two other important parameters affect DEM generation:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:93
|
||||
msgid ""
|
||||
"``--dem-resolution`` which sets the output resolution of the DEM raster "
|
||||
"(cm/pixel)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:94
|
||||
msgid ""
|
||||
"``--dem-gapfill-steps`` which determines the number of progressive DEM "
|
||||
"layers to use. For urban scenes increasing this value to `4-5` can help "
|
||||
"produce better interpolation results in the areas that are left empty by "
|
||||
"the SMRF filter."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:96
|
||||
msgid "Example of how to generate a DTM::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:102
|
||||
msgid "Using Docker"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:104
|
||||
msgid ""
|
||||
"Since many users employ docker to deploy OpenDroneMap, it can be useful "
|
||||
"to understand some basic commands in order to interrogate the docker "
|
||||
"instances when things go wrong, or we are curious about what is "
|
||||
"happening. Docker is a containerized environment intended, among other "
|
||||
"things, to make it easier to deploy software independent of the local "
|
||||
"environment. In this way, it is similar to virtual machines."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:106
|
||||
msgid "A few simple commands can make our docker experience much better."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:109
|
||||
msgid "Listing Docker Machines"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:111
|
||||
msgid ""
|
||||
"We can start by listing available docker machines on the current machine "
|
||||
"we are running as follows:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:120
|
||||
msgid ""
|
||||
"If we want to see machines that may not be running but still exist, we "
|
||||
"can add the `-a` flag:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:133
|
||||
msgid "Accessing logs on the instance"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:135
|
||||
msgid ""
|
||||
"Using either the `CONTAINER ID` or the name, we can access any logs "
|
||||
"available on the machine as follows:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:141
|
||||
msgid ""
|
||||
"This is likely to be unwieldy large, but we can use a pipe `|` character "
|
||||
"and other tools to extract just what we need from the logs. For example "
|
||||
"we can move through the log slowly using the `more` command:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:157
|
||||
msgid ""
|
||||
"Pressing `Enter` or `Space`, arrow keys or `Page Up` or `Page Down` keys "
|
||||
"will now help us navigate through the logs. The lower case letter `Q` "
|
||||
"will let us escape back to the command line."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:159
|
||||
msgid ""
|
||||
"We can also extract just the end of the logs using the `tail` commmand as"
|
||||
" follows:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:170
|
||||
msgid ""
|
||||
"The value `-5` tells the tail command to give us just the last 5 lines of"
|
||||
" the logs."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:173
|
||||
msgid "Command line access to instances"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:175
|
||||
msgid ""
|
||||
"Sometimes we need to go a little deeper in our exploration of the process"
|
||||
" for OpenDroneMap. For this, we can get direct command line access to the"
|
||||
" machines. For this, we can use `docker exec` to execute a `bash` command"
|
||||
" line shell in the machine of interest as follows:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:179
|
||||
msgid "::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:178
|
||||
msgid "> docker exec -ti 2518817537ce bash root@2518817537ce:/code#"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:181
|
||||
msgid "Now we are logged into our docker instance and can explore the machine."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:184
|
||||
msgid "Cleaning up after Docker"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:186
|
||||
msgid ""
|
||||
"Docker has a lamentable use of space and by default does not clean up "
|
||||
"excess data and machines when processes are complete. This can be "
|
||||
"advantageous if we need to access a process that has since terminated, "
|
||||
"but carries the burden of using increasing amounts of storage over time. "
|
||||
"Maciej Łebkowski has an `excellent overview of how to manage excess disk "
|
||||
"usage in docker <https://lebkowski.name/docker-volumes/>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:190
|
||||
msgid "Using ODM from low-bandwidth location"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:193
|
||||
msgid "What is this and who is it for?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:195
|
||||
msgid "Via Ivan Gayton's: [repo](https://github.com/ivangayton/GDAL_scripts/)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:197
|
||||
msgid ""
|
||||
"`OpenDroneMap <https://www.opendronemap.org/>`__ can’t always be "
|
||||
"effectively set up locally—it takes a fairly powerful machine to process "
|
||||
"large datasets—so a cloud machine can sometimes be the answer for people "
|
||||
"in the field. However, bandwidth is a problem in many low-income "
|
||||
"settings. This constraint can’t be solved completely, but the following "
|
||||
"method does a reasonable job of reducing the bandwidth needed to process "
|
||||
"drone imagery datasets on the cloud from African locations."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:205
|
||||
msgid ""
|
||||
"Here we present a tricky but workable process to create an OpenDroneMap "
|
||||
"cloud machine (*not* CloudODM, mind you, just a cloud-based instance of "
|
||||
"ODM that you run from the command line) and use it to remotely process "
|
||||
"large photo sets. It requires familiarity with Unix command line use, "
|
||||
"ssh, a Digital Ocean account (Amazon AWS would work as well, possibly "
|
||||
"with slight differences in the setup), and a moderate level of general "
|
||||
"computer literacy. If you aren’t fairly computer-savvy and willing to "
|
||||
"fuss with a slightly tricky setup, `CloudODM "
|
||||
"<https://www.opendronemap.org/cloudodm/>`__ is what you should be looking"
|
||||
" at."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:216
|
||||
msgid ""
|
||||
"The whole process is mostly targeted at someone flying substantial "
|
||||
"missions in an African or similar location looking to process data ASAP "
|
||||
"while still in a field setting. Therefore it emphasizes a workflow "
|
||||
"intended to reduce bandwidth/data transfer, rather than just the simplest"
|
||||
" way of running ODM."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:223
|
||||
msgid "Steps"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:226
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:228
|
||||
msgid ""
|
||||
"Create a Digital Ocean droplet with at least 4GB of RAM. That’ll cost "
|
||||
"about $20/month. Less than 4GB of RAM and the install will probably fail."
|
||||
" When we actually run the ODM process we’ll resize it to a much "
|
||||
"larger—and more expensive—cloud machine, but between runs you can "
|
||||
"downsize it between runs to the second-cheapest droplet which costs only "
|
||||
"$10/month (the cheapest droplet, at $5/month, comes with such a small "
|
||||
"drive that you can’t downsize back to it)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:236
|
||||
msgid "Should be an Ubuntu 16.04 instance to ensure dependency compatibility"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:238
|
||||
msgid ""
|
||||
"Create a user with sudo privileges. `Digital Ocean’s insanely good "
|
||||
"documentation <https://www.digitalocean.com/community/tutorials/initial-"
|
||||
"server-setup-with-ubuntu-16-04>`__ can help you figure this out. In our "
|
||||
"case we set up a user called ``odm``, so connecting to it is via the "
|
||||
"command ``ssh odm@xxx.xxx.xxx.xxx`` (where the x’s stand for the IPv4 "
|
||||
"address of your server). If you want to follow this example closely, *do*"
|
||||
" use the username ``odm``; then your install path will be "
|
||||
"``/home/odm/ODM/`` and will match all of the examples in this document. "
|
||||
"-When you log into the server, it will offer you the option to upgrade to"
|
||||
" Ubuntu 18.04, a more recent version. Don’t. ODM native install doesn’t "
|
||||
"work smoothly on 18.04. Go ahead and execute ``sudo apt update`` and "
|
||||
"``sudo apt upgrade`` to ensure your server isn’t dangerously without "
|
||||
"updates, but stay with Ubuntu 16.04."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:253
|
||||
msgid ""
|
||||
"Download and install ODM on it from the `ODM Github "
|
||||
"<https://github.com/OpenDroneMap/ODM>`__ (regular, not WebODM) with the "
|
||||
"following commands:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:263
|
||||
msgid ""
|
||||
"If you do this from the default home folder of your user (i.e. ``odm``) "
|
||||
"the path to the install will be ``/home/odm/ODM`` (abbreviated as "
|
||||
"``~/ODM/``)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:266
|
||||
msgid ""
|
||||
"There are some environmental variables that need to be set. Open the "
|
||||
"~/.bashrc file on your machine and add the following 3 lines at the end "
|
||||
"(From `the ODM github <https://github.com/OpenDroneMap/ODM>`__). The file"
|
||||
" can be opened with ``nano ~/.bashrc`` (or whatever text editor you use "
|
||||
"in lieu of nano). Be sure to replace ``/home/odm/`` with the correct path"
|
||||
" to the location where you extracted OpenDroneMap if you didn’t do "
|
||||
"everything exactly as in our example (for example if you used a different"
|
||||
" username in your server setup):"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:281
|
||||
msgid ""
|
||||
"Note that the ODM github readme contains a slight error, the install "
|
||||
"directory name will be ODM, not OpenDroneMap (you’ll see this if you "
|
||||
"compare the above instructions to the ones on the ODM GitHub)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:285
|
||||
msgid ""
|
||||
"In order to prevent a crash wherein the split-merge process fails to "
|
||||
"locate its own executable, we add the following lines to ``~/.bashrc`` "
|
||||
"(adjust paths if you’ve set things up differently from our example):"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:295
|
||||
msgid ""
|
||||
"Now you’ll need a second cloud hard drive (a “Volume” in Digital Ocean "
|
||||
"jargon) big enough to manage your project. Rule of thumb seems to be 10 "
|
||||
"times the size of your raw image set; we’ve got a 100GB image set and set"
|
||||
" up a 1000GB volume (once the run is done you should be able to get rid "
|
||||
"of most of this expensive drive capacity, but it’s needed to complete the"
|
||||
" process). Set up the volume, attach it to your droplet, and `configure "
|
||||
"its mount point <https://www.digitalocean.com/docs/volumes/how-"
|
||||
"to/mount/>`__ (in this example we’re setting it to ``/mnt/odmdata/``)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:306
|
||||
msgid "Prep data and project"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:308
|
||||
msgid ""
|
||||
"Now push your images onto the server. You can use `Secure Copy (scp) "
|
||||
"<https://en.wikipedia.org/wiki/Secure_copy>`__ like so: ``scp -r "
|
||||
"/path/to/my/imagefolder odm@xxx.xxx.xxx.xxx:/mnt/odmdata/``."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:312
|
||||
msgid ""
|
||||
"This pushes the entire folder full of images (that’s what the ``-r`` "
|
||||
"option does, “recursive”) into the remote location (in our example, into "
|
||||
"the volume we attached to the cloud machine at ``/mnt/odmdata/``."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:316
|
||||
msgid ""
|
||||
"This will take some bandwidth. No way around the size of the files.\\ `1 "
|
||||
"<#footnote1>`__, \\ `2 <#footnote2>`__\\"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:320
|
||||
msgid "Directory structure"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:322
|
||||
msgid ""
|
||||
"ODM requires the directories on the machine to be set up just so. The "
|
||||
"critical bits are the install folder (if you installed as above, it’s "
|
||||
"``/home/odm/ODM/``) and the project folder (i.e. "
|
||||
"``/mnt/odmdata/myproject/``)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:327
|
||||
msgid ""
|
||||
"ODM’s settings.yaml file specifies a single parent directory containing "
|
||||
"all projects. This is what goes in the project path line of the "
|
||||
"settings.yaml file (slightly confusingly, this is actually the *parent* "
|
||||
"directory of the individual project directories, which are specified by "
|
||||
"the project name parameter when calling ODM). Edit settings.yaml and set "
|
||||
"the project_path parameter to (as per our example setup) "
|
||||
"``/mnt/odmdata/``, which in this case points to the Volume we created. "
|
||||
"Individual project directories are created within that."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:336
|
||||
msgid ""
|
||||
"Individual project directories, i.e. ``/mnt/odmdata/myproject/`` contain "
|
||||
"the gcp_list.txt file, the image_groups.txt file, and the images folder "
|
||||
"for each project``\\`"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:339
|
||||
msgid ""
|
||||
"The images folder, i.e. ``/mnt/odmdata/myproject/images/`` contains all "
|
||||
"of the images. If you set it up like this, the images don’t get re-copied"
|
||||
" because they’re already in the directory that ODM wants them in."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:343
|
||||
msgid ""
|
||||
"If you’ve got images with GPS info on them (as from an Ebee), use "
|
||||
"exiftool to massage the GPS information ``exiftool "
|
||||
"\"-GPSDOP<GPSZAccuracy\" .``.\\ `3 <#footnote3>`__\\ To do so you’ll "
|
||||
"need to install exiftool. The command for that is probably ``sudo apt "
|
||||
"install libimage-exiftool-perl``."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:348
|
||||
msgid ""
|
||||
"Modify settings.yaml to specify the parent directory of the project "
|
||||
"folder (in this case the Volume we created, ``/mnt/odmdata/``). Make sure"
|
||||
" the images are in the correct spot, i.e. "
|
||||
"``/mnt/odmdata/myproject/images`` and the other ancillary files "
|
||||
"(gcp_list.txt and image_groups.txt) are in the root folder "
|
||||
"``/mnt/odmdata/myproject/``"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:354
|
||||
msgid ""
|
||||
"if you have the images in separate folders for individual AOI blocks or "
|
||||
"flights (which you will if your flight management was organized), you can"
|
||||
" create an image_groups.txt file with the incantations ``for i in *; do "
|
||||
"cd $i; for j in *; do echo \"$j $i\" >> ../$i.txt; done; cd ../; done;`` "
|
||||
"and ``cd ../``, ``for i in myproject/*.txt; do cat $i >> "
|
||||
"image_groups.txt; done;``. That should create a file with the correct "
|
||||
"structure: a list of all image files and a “group name” after each one "
|
||||
"(which in this case will simply be the name of the folder it came from). "
|
||||
"Then move all of the image files into a single directory called images in"
|
||||
" the project root dir (so ``/mnt/odmdata/myproject/images/``). The "
|
||||
"image_groups.txt file will allow ODM to keep track of which images belong"
|
||||
" to the same batch, even though they’re all in a single directory."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:370
|
||||
msgid "Resize droplet, pull pin, run away"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:372
|
||||
msgid ""
|
||||
"Shut down and resize your machine to an appropriately monstrous number of"
|
||||
" CPUs and amount of memory. I use the memory-optimized machine with 24 "
|
||||
"dedicated vCPUs and 192GB of RAM (which costs about $1.60/hr—which adds "
|
||||
"up fast, it’s over $1000/month). Restart, and get to work quickly so as "
|
||||
"not to waste expensive big-droplet time."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:377
|
||||
msgid ""
|
||||
"Launch the ODM process via ssh using nohup (so that if you’re cut off, "
|
||||
"processing will continue)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:380
|
||||
msgid ""
|
||||
"Alternately you can use GNU screen to launch the process from a screen "
|
||||
"session which won’t stop if your connection is interrupted; launch "
|
||||
"``screen``, and use ``<ctrl> a <ctrl> d`` to detach, ``screen -r`` to re-"
|
||||
"attach. But using screen won’t get you a log file of all of the console "
|
||||
"output unless you do something specific to capture that, while nohup "
|
||||
"gives you a file with all of the console output, including error "
|
||||
"messages, for free."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:387
|
||||
msgid ""
|
||||
"Note: as of 2020-03 the normal incantation ``python run.py -i "
|
||||
"/path/to/image/folder project_name`` seems *not* to work; the ``-i`` or "
|
||||
"``--image`` parameter causes a weird error. So we drop the -i parameter, "
|
||||
"and rely on the project directory line in the settings.yaml file to "
|
||||
"direct ODM to the right place. Now using (including a split-merge):"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:398
|
||||
msgid ""
|
||||
"This points ODM at the folder (in this example) "
|
||||
"``/mnt/odmdata/myproject/``. Provided the image_groups.txt and "
|
||||
"gcp_list.txt are in this folder, the images are in "
|
||||
"``/mnt/odmdata/myproject/images/``, and the project path in settings.yaml"
|
||||
" is ``/mnt/odmdata/`` it will not waste time and space copying images."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:405
|
||||
msgid ""
|
||||
"Note that this assumes you have an image_groups.txt file. If not, this "
|
||||
"``-split-overlap 0`` will probably fuck things up, and the ``--split 1`` "
|
||||
"is literally a random number that will be ignored after the "
|
||||
"image_groups.txt file is loaded (I think it normally controls how many "
|
||||
"groups it splits a set of images into, but in our case we’re assuming the"
|
||||
" images are already grouped sensibly). If you don’t have a large dataset "
|
||||
"(>1000 images), omit the ``--split`` and ``--split-overlap`` options."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:414
|
||||
msgid "Follow the progress using tail (so that you’ll know when it’s done)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:420
|
||||
msgid ""
|
||||
"You may want to keep an eye on htop (to get a sense of the resource usage"
|
||||
" so that in future you can only spin up a machine as large as necessary)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:425
|
||||
msgid "After it finishes (assuming you survive that long)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:427
|
||||
msgid ""
|
||||
"As soon as processing is done, shut down the machine and resize it back "
|
||||
"down to the inexpensive minimum capacity."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:429
|
||||
msgid "Start the machine back up, and log in via ssh."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:430
|
||||
msgid ""
|
||||
"If you want to save download bandwidth, you can compress the orthophoto "
|
||||
"using GDAL. Don’t add overviews, do that on your local machine to avoid "
|
||||
"making the file bigger before downloading it."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:438
|
||||
msgid ""
|
||||
"Download using scp: ``scp "
|
||||
"odm@xxx.xxx.xxx.xxx:/mnt/odmdata/myproject/odm_orthophoto/odm_orthophoto.tif``"
|
||||
" (or grab the compressed version you created in the last step)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:442
|
||||
msgid ""
|
||||
"Once you get the file on your local computer, you can use QGIS to add "
|
||||
"overviews (“pyramids”) or use the GDAL command ``gdaladdo -r average "
|
||||
"/path/to/image.tif 2 4 8 16 32 64 128 256 512 1024``."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/tutorials.rst:446
|
||||
msgid ""
|
||||
"You can archive the odm_texturing, odm_georeferencing, and odm-dem "
|
||||
"folders using tar to make them easier to download in one piece (and maybe"
|
||||
" smaller)."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "``--ignore-gsd`` is a flag that "
|
||||
#~ "instructs ODM to skip certain memory "
|
||||
#~ "and speed optimizations that directly "
|
||||
#~ "affect the orthophoto. Using this flag"
|
||||
#~ " will increase runtime and memory "
|
||||
#~ "usage, but will produce sharper results."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Ground Control Points"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Ground control points are useful for "
|
||||
#~ "correcting distortions in the data and"
|
||||
#~ " referencing the data to know "
|
||||
#~ "coordinate systems."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "The format of the GCP file is simple."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The header line is a description "
|
||||
#~ "of a UTM coordinate system, which "
|
||||
#~ "must be written as a proj4 string."
|
||||
#~ " http://spatialreference.org/ is a good "
|
||||
#~ "resource for finding that information. "
|
||||
#~ "Please note that currently angular "
|
||||
#~ "coordinates (like lat/lon) DO NOT work."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Subsequent lines are the X, Y &"
|
||||
#~ " Z coordinates, your associated pixels "
|
||||
#~ "and the image filename:"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "GCP file format::"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "e.g. for the Langley dataset::"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "If you supply a GCP file called"
|
||||
#~ " gcp_list.txt then ODM will automatically"
|
||||
#~ " detect it. If it has another "
|
||||
#~ "name you can specify using ``--gcp "
|
||||
#~ "<path>``. If you have a gcp file"
|
||||
#~ " and want to do georeferencing with"
|
||||
#~ " exif instead, then you can specify"
|
||||
#~ " ``--use-exif``."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "`This post has some information about"
|
||||
#~ " placing Ground Control Targets before "
|
||||
#~ "a flight <http://diydrones.com/profiles/blogs/ground-"
|
||||
#~ "control-points-gcps-for-aerial-"
|
||||
#~ "photography>`_, but if you already have"
|
||||
#~ " images, you can find your own "
|
||||
#~ "points in the images post facto. "
|
||||
#~ "It's important that you find high-"
|
||||
#~ "contrast objects that are found in "
|
||||
#~ "**at least** 3 photos, and that "
|
||||
#~ "you find a minimum of 5 objects."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Sharp corners are good picks for "
|
||||
#~ "GCPs. You should also place/find the "
|
||||
#~ "GCPs evenly around your survey area."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The ``gcp_list.txt`` file must be "
|
||||
#~ "created in the base of your "
|
||||
#~ "project folder."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "For good results your file should "
|
||||
#~ "have a minimum of 15 lines after"
|
||||
#~ " the header (5 points with 3 "
|
||||
#~ "images to each point)."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid "Ground Control Points Interface"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "WebODM has a GCP interface, and "
|
||||
#~ "example of which can be seen on"
|
||||
#~ " `the WebODM Demo <http://demo.webodm.org/plugins"
|
||||
#~ "/posm-gcpi/>`_. To use this with "
|
||||
#~ "known ground control XYZ values, one "
|
||||
#~ "would do the following:"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Create a GCP list that only "
|
||||
#~ "includes gcp name (this is the "
|
||||
#~ "label that will be seen in the "
|
||||
#~ "GCP interface), x, y, and z, with"
|
||||
#~ " a header with a proj4 string "
|
||||
#~ "of your GCPs (make sure they are"
|
||||
#~ " in a planar coordinate system, such"
|
||||
#~ " as UTM. It should look something "
|
||||
#~ "like this:"
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Then one can load this GCP list"
|
||||
#~ " into the interface, load the images,"
|
||||
#~ " and place each of the GCPs in"
|
||||
#~ " the image."
|
||||
#~ msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "`Help edit these docs! "
|
||||
#~ "<https://github.com/OpenDroneMap/docs/blob/publish/source/using.rst>`_"
|
||||
#~ msgstr ""
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:01+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/arguments.rst:4
|
||||
msgid "Options and Flags"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/arguments.rst:6
|
||||
msgid "Arguments::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/arguments.rst:289
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/using.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,196 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/contributing.rst:4
|
||||
msgid "How To Contribute"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:6
|
||||
msgid ""
|
||||
"OpenDroneMap relies on community contributions. You can contribute in "
|
||||
"many ways, even if you are not a programmer."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:9
|
||||
msgid "Community Forum"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:11
|
||||
msgid ""
|
||||
"If you are looking to get involved, are stuck on a problem, or want to "
|
||||
"reach out, `the forum <https://community.opendronemap.org/>`_ is a great "
|
||||
"place to start. You may find your questions already answered or else you "
|
||||
"can find other useful tips and resources. You can also contribute your "
|
||||
"open access datasets for others to explore. It is a good place go before "
|
||||
"submitting bug reports or getting in touch with developers before writing"
|
||||
" a new feature."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:14
|
||||
msgid "Reporting Bugs"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:16
|
||||
msgid ""
|
||||
"Bugs are tracked as Github issues. Please create an issue in the "
|
||||
"repository and tag it with the Bug tag."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:18
|
||||
msgid ""
|
||||
"Explain the problem and include additional details to help maintainers "
|
||||
"reproduce the problem:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:20
|
||||
msgid ""
|
||||
"**Use a clear and descriptive title** for the issue to identify the "
|
||||
"problem."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:21
|
||||
msgid ""
|
||||
"**Describe the exact steps which reproduce the problem** in as many "
|
||||
"details as possible. For example, start by explaining how you run ODM "
|
||||
"(Docker, Vagrant, etc), e.g. which command exactly you used in the "
|
||||
"terminal. When listing steps, **don't just say what you did, but explain "
|
||||
"how you did it.**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:22
|
||||
msgid ""
|
||||
"**Provide specific examples to demonstrate the steps.** Include links to "
|
||||
"files or GitHub projects, or copy/pasteable snippets, which you use in "
|
||||
"those examples. If you're providing snippets in the issue, use `Markdown "
|
||||
"code blocks <https://help.github.com/articles/markdown-basics/#multiple-"
|
||||
"lines>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:23
|
||||
msgid ""
|
||||
"**Describe the behavior you observed after following the steps** and "
|
||||
"point out what exactly is the problem with that behavior."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:24
|
||||
msgid "**Explain which behavior you expected to see instead and why.**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:25
|
||||
msgid ""
|
||||
"**Include screenshots and animated GIFs** which show you following the "
|
||||
"described steps and clearly demonstrate the problem. You can use `this "
|
||||
"tool to record GIFs on macOS and Windows "
|
||||
"<http://www.cockos.com/licecap/>`_, and `this tool "
|
||||
"<https://github.com/colinkeenan/silentcast>`_ or `this one "
|
||||
"<https://github.com/GNOME/byzanz>`_ on Linux."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:26
|
||||
msgid ""
|
||||
"**If the problem is related to performance,** please post your machine's "
|
||||
"specs (host and guest machine)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:27
|
||||
msgid ""
|
||||
"**If the problem wasn't triggered by a specific action,** describe what "
|
||||
"you were doing before the problem happened and share more information "
|
||||
"using the guidelines below."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:29
|
||||
msgid "Include details about your configuration and environment:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:31
|
||||
msgid ""
|
||||
"**Which version of ODM are you using?** A stable release? a clone of "
|
||||
"master?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:32
|
||||
msgid "**What's the name and version of the OS you're using?**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:33
|
||||
msgid ""
|
||||
"**Are you running ODM in a virtual machine or Docker?** If so, which VM "
|
||||
"software are you using and which operating systems and versions are used "
|
||||
"for the host and the guest?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:36
|
||||
msgid "Template For Submitting Bug Reports"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:69
|
||||
msgid "Pull Requests"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:71
|
||||
msgid ""
|
||||
"Include screenshots and animated GIFs in your pull request whenever "
|
||||
"possible."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:72
|
||||
msgid "Follow the PEP8 Python Style Guide."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:73
|
||||
msgid "End files with a newline."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:76
|
||||
msgid "Avoid platform-dependent code:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:75
|
||||
msgid "Use require('fs-plus').getHomeDirectory() to get the home directory."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:76
|
||||
msgid "Use path.join() to concatenate filenames."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:77
|
||||
msgid ""
|
||||
"Use os.tmpdir() rather than /tmp when you need to reference the temporary"
|
||||
" directory."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:79
|
||||
msgid "Using a plain return when returning explicitly at the end of a function."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:79
|
||||
msgid "Not return null, return undefined, null, or undefined"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/contributing.rst:81
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/contributing.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "How to contribute"
|
||||
#~ msgstr ""
|
||||
|
|
@ -1,78 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/flying.rst:2
|
||||
msgid "Flying Tips"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:4
|
||||
msgid ""
|
||||
"The `Humanitarian OpenStreetMap team <https://www.hotosm.org/>`_ has "
|
||||
"guidelines on `flying for UAV mapping <https://uav-"
|
||||
"guidelines.openaerialmap.org/>`_:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:6
|
||||
msgid ""
|
||||
"`Choosing the right UAV <https://uav-"
|
||||
"guidelines.openaerialmap.org/pages/05-choosing-the-right-uav/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:8
|
||||
msgid ""
|
||||
"`Choosing the right sensor <https://uav-"
|
||||
"guidelines.openaerialmap.org/pages/06-choosing-the-sensor/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:10
|
||||
msgid ""
|
||||
"`Mission preparation <https://uav-guidelines.openaerialmap.org/pages/07"
|
||||
"-preparing-for-the-uav-mission/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:12
|
||||
msgid ""
|
||||
"The guidelines are intended for drone mapping projects on islands, but "
|
||||
"have general use for all drone mappers."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:14
|
||||
msgid ""
|
||||
"See also DroneDeploy's guide on `Making Successful Maps "
|
||||
"<https://support.dronedeploy.com/docs/making-successful-maps>`_, which "
|
||||
"provides great tips on mission planning."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:16
|
||||
msgid ""
|
||||
"Finally, lens distortion is a challenge in projects requiring accurate 3D"
|
||||
" data. See our section in these docs on `Camera Calibration "
|
||||
"<tutorials.html#calibrating-the-camera>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/flying.rst:18
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/flying.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Flying tips"
|
||||
#~ msgstr ""
|
||||
|
|
@ -1,181 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/gcp.rst:3
|
||||
msgid "Ground Control Points"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:5
|
||||
msgid ""
|
||||
"Ground control points are useful for correcting distortions in the data "
|
||||
"and referencing the data to know coordinate systems."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:7
|
||||
msgid "The format of the GCP file is simple."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:9
|
||||
msgid ""
|
||||
"The first line should contain the name of the projection used for the geo"
|
||||
" coordinates. This can be specified either as a PROJ string (e.g. "
|
||||
"``+proj=utm +zone=10 +ellps=WGS84 +datum=WGS84 +units=m +no_defs``), EPSG"
|
||||
" code (e.g. ``EPSG:4326``) or as a ``WGS84 UTM <zone>[N|S]`` value (eg. "
|
||||
"``WGS84 UTM 16N``)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:10
|
||||
msgid ""
|
||||
"Subsequent lines are the X, Y & Z coordinates, your associated pixels, "
|
||||
"the image filename and optional extra fields, separated by tabs or "
|
||||
"spaces:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:11
|
||||
msgid "Elevation values can be set to \"NaN\" to indicate no value"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:12
|
||||
msgid "The 7th column (optional) typically contains the label of the GCP."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:14
|
||||
msgid "GCP file format::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:20
|
||||
msgid "Example::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:27
|
||||
msgid ""
|
||||
"If you supply a GCP file called ``gcp_list.txt`` then ODM will "
|
||||
"automatically detect it. If it has another name you can specify using "
|
||||
"``--gcp <path>``. If you have a gcp file and want to do georeferencing "
|
||||
"with exif instead, then you can specify ``--use-exif``. If you have high "
|
||||
"precision GPS measurements in your images (RTK) and want to use that "
|
||||
"information along with a gcp file, you can specify ``--force-gps``."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:29
|
||||
msgid ""
|
||||
"`This post has some information about placing Ground Control Targets "
|
||||
"before a flight <http://diydrones.com/profiles/blogs/ground-control-"
|
||||
"points-gcps-for-aerial-photography>`_, but if you already have images, "
|
||||
"you can find your own points in the images post facto. It's important "
|
||||
"that you find high-contrast objects that are found in **at least** 3 "
|
||||
"photos, and that you find a minimum of 5 objects."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:31
|
||||
msgid ""
|
||||
"Sharp corners are good picks for GCPs. You should also place/find the "
|
||||
"GCPs evenly around your survey area."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:33
|
||||
msgid ""
|
||||
"The ``gcp_list.txt`` file must be created in the base of your project "
|
||||
"folder."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:35
|
||||
msgid ""
|
||||
"For good results your file should have a minimum of 15 lines after the "
|
||||
"header (5 points with 3 images to each point)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:39
|
||||
msgid "User Interfaces"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:41
|
||||
msgid "You can use one of two user interfaces for creating GCP files:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:43
|
||||
msgid "`POSM GCPi <https://github.com/posm/posm-gcpi>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:44
|
||||
msgid "`GCP Editor Pro <https://github.com/uav4geo/GCPEditorPro>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:48
|
||||
msgid "POSM GCPi"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:50
|
||||
msgid ""
|
||||
"The POSM GCPi is loaded by default on WebODM. An example is available at "
|
||||
"`the WebODM Demo <http://demo.webodm.org/plugins/posm-gcpi/>`_. To use "
|
||||
"this with known ground control XYZ values, one would do the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:52
|
||||
msgid ""
|
||||
"Create a GCP list that only includes gcp name (this is the label that "
|
||||
"will be seen in the GCP interface), x, y, and z, with a header with a "
|
||||
"proj4 string of your GCPs (make sure they are in a planar coordinate "
|
||||
"system, such as UTM. It should look something like this:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:63
|
||||
msgid ""
|
||||
"Then one can load this GCP list into the interface, load the images, and "
|
||||
"place each of the GCPs in the image."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:67
|
||||
msgid "GCP Editor Pro"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:69
|
||||
msgid ""
|
||||
"This app needs to be installed separately or can be loaded as a WebODM "
|
||||
"plugin from `https://github.com/uav4geo/GCPEditorPro "
|
||||
"<https://github.com/uav4geo/GCPEditorPro>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:71
|
||||
msgid ""
|
||||
"Create a CSV file that includes the gcp name, northing, easting and "
|
||||
"elevation."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:80
|
||||
msgid ""
|
||||
"Then import the CSV from the main screen and type ``+proj=utm +zone=37 "
|
||||
"+south +ellps=WGS84 +datum=WGS84 +units=m +no_defs`` in the ``EPSG/PROJ``"
|
||||
" box."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:82
|
||||
msgid ""
|
||||
"The following screen will display a map from where to select the GCPs to "
|
||||
"tag and import the respective images."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/gcp.rst:85
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/tutorials.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,30 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:01+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/index.rst:8
|
||||
msgid "Welcome to OpenDroneMap's documentation"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/index.rst:40
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/index.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,785 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/installation.rst:4
|
||||
msgid "Installation and Getting Started"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:6
|
||||
msgid ""
|
||||
"This section is excerpted and modified with permission from "
|
||||
"`OpenDroneMap: The Missing Guide <https://odmbook.com>`_, by Piero "
|
||||
"Toffanin."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:8
|
||||
msgid ""
|
||||
"Until recently OpenDroneMap was the term used to refer to a single "
|
||||
"command line application (what is now known as the ODM project). With "
|
||||
"the recent development of a web interface, an API and other tools, "
|
||||
"OpenDroneMap has become an ecosystem of various applications to process, "
|
||||
"analyze and display aerial data. This ecosystem is made of several "
|
||||
"components:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:14
|
||||
msgid ""
|
||||
"**ODM** is the processing engine, which can be used from the command "
|
||||
"line. It takes images as input and produces a variety of outputs, "
|
||||
"including point clouds, 3D models and orthophotos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:20
|
||||
msgid ""
|
||||
"**NodeODM** is a light-weight API built on top of ODM. It allows users "
|
||||
"and applications to access the functions of ODM over a computer network"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:26
|
||||
msgid ""
|
||||
"**WebODM** is a friendly user interface that includes a map viewer, a 3D "
|
||||
"viewer, user logins, a plugin system and many other features that are "
|
||||
"expected of modern drone mapping platforms"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:32
|
||||
msgid ""
|
||||
"**CloudODM** is a small command line client to communicate with ODM via "
|
||||
"the NodeODM API"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:38
|
||||
msgid ""
|
||||
"**PyODM** is a Python SDK for creating tasks via the NodeODM API. We "
|
||||
"cover it in more detail in the “Automated Processing With Python” chapter"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:44
|
||||
msgid ""
|
||||
"**ClusterODM** is a load balancer for connecting together multiple "
|
||||
"NodeODM instances"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:46
|
||||
msgid ""
|
||||
"ODM, NodeODM and WebODM are available on all major platforms (Windows, "
|
||||
"macOS and Linux) via a program called docker, which is required to run "
|
||||
"the software. Docker offers a way to run “containers”. Containers are "
|
||||
"packaged copies of an entire system, its software and its dependencies. "
|
||||
"These containers run within a virtual environment. On Linux this virtual "
|
||||
"environment is available from the operating system and is very efficient."
|
||||
" On macOS and Windows the containers run within a VM, so there’s a bit of"
|
||||
" a overhead. but it’s still very suitable for running the software. Once "
|
||||
"installed users do not have to worry much about docker, as it operates "
|
||||
"(almost) transparently."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:48
|
||||
msgid ""
|
||||
"Without docker it would not be possible to run ODM on Windows or macOS. "
|
||||
"On these platforms ODM cannot run natively. Future development efforts "
|
||||
"are being focused on leveraging the new Windows Subsystem for Linux (WSL)"
|
||||
" and the possibility to make a native port of all dependencies to macOS, "
|
||||
"which is going to make the installation much easier."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:50
|
||||
msgid ""
|
||||
"On Ubuntu Linux 16.04 it’s feasible to run all OpenDroneMap software "
|
||||
"natively. However, because there’s very little performance penalty for "
|
||||
"running docker on Linux and docker is straightforward to setup on this "
|
||||
"platform, we don’t recommend it. On Linux the advantages of "
|
||||
"containerization far outweigh a tiny performance penalty. With docker "
|
||||
"users also get easy one-step updates of the software, so that’s nice."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:54
|
||||
msgid "Hardware Recommendations"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:56
|
||||
msgid "The bare minimum requirements for running the software are:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:59
|
||||
msgid "64bit CPU manufactured on or after 2010"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:60
|
||||
msgid "20 GB of disk space"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:61
|
||||
msgid "4 GB RAM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:63
|
||||
msgid ""
|
||||
"No more than 100-200 images can be processed with the above "
|
||||
"specifications (the software will run out of memory). Recommended "
|
||||
"requirements are:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:65
|
||||
msgid "Latest Generation CPU"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:66
|
||||
msgid "100 GB of disk space"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:67
|
||||
msgid "16 GB RAM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:69
|
||||
msgid ""
|
||||
"The above will allow for a few hundred images to be processed without too"
|
||||
" many issues. A CPU with more cores will allow for faster processing, "
|
||||
"while a graphics card (GPU) currently has no impact on performance. For "
|
||||
"processing more images, add more disk space and RAM linearly to the "
|
||||
"number of images you need to process."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:75
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:77
|
||||
msgid ""
|
||||
"We recommend people use `docker <https://www.docker.com>`_ for running "
|
||||
"ODM, whether you are on Windows, macOS or Linux."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:80
|
||||
msgid "Windows"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:82
|
||||
msgid ""
|
||||
"To run OpenDroneMap you need at least Windows 7. Previous versions of "
|
||||
"Windows are not supported."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:86 ../../source/installation.rst:238
|
||||
msgid "Step 1. Check Virtualization Support"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:88
|
||||
msgid ""
|
||||
"Docker requires a feature from your CPU called virtualization, which "
|
||||
"allows it to run virtual machines (VMs). Make sure you have it enabled! "
|
||||
"Sometimes this is disabled. To check, on Windows 8 or higher you can open"
|
||||
" the **Task Manager** (press CTRL+SHIFT+ESC) and switch to the "
|
||||
"**Performance** tab."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:94
|
||||
msgid "*Virtualization should be enabled*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:96
|
||||
msgid ""
|
||||
"On Windows 7 to see if you have virtualization enabled you can use the "
|
||||
"`Microsoft® Hardware-Assisted Virtualization Detection Tool <http:// "
|
||||
"www.microsoft.com/en-us/download/details.aspx?id=592>`_ instead."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:99
|
||||
msgid ""
|
||||
"If virtualization is disabled, you’ll need to enable it. The procedure "
|
||||
"unfortunately is a bit different for each computer model, so the best way"
|
||||
" to do this is to look up on a search engine “how to enable vtx for <type"
|
||||
" your computer model here>”. Often times it’s a matter of restarting the "
|
||||
"computer, immediately pressing F2 or F12 during startup, navigating the "
|
||||
"boot menu and changing the settings to enable virtualization (often "
|
||||
"called “VT-X”)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:105
|
||||
msgid ""
|
||||
"*Common keys to press at computer startup to access the boot menu for "
|
||||
"various PC vendors*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:108 ../../source/installation.rst:257
|
||||
msgid "Step 2. Install Requirements"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:110
|
||||
msgid "First, you’ll need to install:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:112
|
||||
msgid "Git: https://git-scm.com/downloads"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:113
|
||||
msgid "Python (latest version 3): https://www.python.org/downloads/windows/"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:115
|
||||
msgid ""
|
||||
"For Python 3, make sure you check **Add Python 3.x to PATH** during the "
|
||||
"installation."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:121
|
||||
msgid ""
|
||||
"*Don’t forget to add the Python executable to your PATH (so that you can "
|
||||
"run commands with it)*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:123
|
||||
msgid ""
|
||||
"Then, only if you are on Windows 10 Home, Windows 8 (any version) or "
|
||||
"Windows 7 (any version), install:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:125
|
||||
msgid ""
|
||||
"Docker Toolbox: "
|
||||
"https://github.com/docker/toolbox/releases/download/v18.09.3/DockerToolbox-18.09.3.exe"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:127
|
||||
msgid ""
|
||||
"If you are on Windows 10 Professional or a newer version, you should "
|
||||
"install instead:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:129
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Docker for Windows: "
|
||||
"https://download.docker.com/win/stable/Docker%20for%20Windows%20Installer.exe"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:131
|
||||
msgid ""
|
||||
"Please do **NOT** install both docker programs. They are different and "
|
||||
"will create a mess if they are both installed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:133
|
||||
msgid ""
|
||||
"After installing docker, launch it from the Desktop icon that is created "
|
||||
"from the installation (**Docker Quickstart** in the case of Docker "
|
||||
"Toolbox, **Docker for Windows** for Docker for Windows). This is "
|
||||
"important, do not skip this step. If there are errors, follow the prompts"
|
||||
" on screen to fix them."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:136 ../../source/installation.rst:299
|
||||
msgid "Step 3. Check Memory and CPU Allocation"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:138
|
||||
msgid ""
|
||||
"Docker on Windows works by running a VM in the background (think of a VM "
|
||||
"as a “computer emulator”). This VM has a certain amount of memory "
|
||||
"allocated and WebODM can only use as much memory as it’s allocated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:140
|
||||
msgid ""
|
||||
"If you installed Docker Toolbox (see below if you installed Docker for "
|
||||
"Windows instead):"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:142
|
||||
msgid "Open the **VirtualBox Manager** application"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:143
|
||||
msgid ""
|
||||
"Right click the **default** VM and press **Close (ACPI Shutdown)** to "
|
||||
"stop the machine"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:144
|
||||
msgid "Right click the **default** VM and press **Settings...**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Move the **Base Memory** slider from the **System** paneland allocate "
|
||||
"60-70% of all available memory, optionally adding 50% of the available "
|
||||
"processors from the **Processor** tab also"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:151
|
||||
msgid "*VirtualBox default VM settings*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:153
|
||||
msgid "Then press **OK**, right click the **default** VM and press **Start**."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:155
|
||||
msgid "If you installed Docker for Windows instead:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:157
|
||||
msgid "Look in the system tray and right click the “white whale” icon."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:158
|
||||
msgid "From the menu, press **Settings...**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:159
|
||||
#, python-format
|
||||
msgid ""
|
||||
"From the panel, click **Advanced** and use the sliders to allocate 60-70%"
|
||||
" of available memory and use half of all available CPUs."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:160
|
||||
msgid "Press **Apply**."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:166
|
||||
msgid "*Step 1 Docker icon*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:172
|
||||
msgid "*Step 3 & 4 Docker settings*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:175
|
||||
msgid "Step 4. Download WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:177
|
||||
msgid "Open the **Git Gui** program that comes installed with Git. From there:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:179
|
||||
msgid "When Git Gui opens, click 'Clone Existing Repository' option"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:180
|
||||
msgid "In **Source Location** type: https://github.com/OpenDroneMap/WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:181
|
||||
msgid ""
|
||||
"In **Target Directory** click browse and navigate to a folder of your "
|
||||
"choosing (create one if necessary)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:182
|
||||
msgid "Press **Clone**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:188
|
||||
msgid "*Git Gui*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:190
|
||||
msgid "If the download succeeded, you should now see this window:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:196
|
||||
msgid "*Git Gui after successful download (clone)*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:198
|
||||
msgid ""
|
||||
"Go to the **Repository** menu, then click **Create Desktop Icon**. This "
|
||||
"will allow you to come back to this application easily in the future."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:201
|
||||
msgid "Step 4. Launch WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:203
|
||||
msgid ""
|
||||
"From Git Gui, go to the **Repository** menu, then click **Git Bash**. "
|
||||
"From the command line terminal type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:209
|
||||
msgid ""
|
||||
"Several components will download to your machine at this point, including"
|
||||
" WebODM, NodeODM and ODM. After the download you should be greeted by the"
|
||||
" following screen:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:215
|
||||
msgid "*Console output after starting WebODM for the first time*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:217
|
||||
msgid ""
|
||||
"If you are using Docker for Windows, open a web browser to "
|
||||
"http://localhost:8000"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:218
|
||||
msgid ""
|
||||
"If you are using Docker Toolbox, find the IP address to connect to by "
|
||||
"typing:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:224
|
||||
msgid "You should get a result like the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:230
|
||||
msgid ""
|
||||
"Then connect to http://192.168.1.100:8000 (replacing the IP address with "
|
||||
"the proper one)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:233
|
||||
msgid "macOS"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:235
|
||||
msgid ""
|
||||
"Most modern (post 2010) Mac computers running macOS Sierra 10.12 or "
|
||||
"higher can run OpenDroneMap using docker, as long as hardware "
|
||||
"virtualization is supported (see below)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:240
|
||||
msgid "Open a Terminal window and type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:246
|
||||
msgid "You will get a response similar to the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:252
|
||||
msgid ""
|
||||
"If the result is *kern.hv_support: 1*, then your Mac is supported! "
|
||||
"Continue with Step 2."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:254
|
||||
msgid ""
|
||||
"If the result is *kern.hv_support: 0*, unfortunately it means your Mac is"
|
||||
" too old to run OpenDroneMap. :("
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:259
|
||||
msgid "There are only two programs to install:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:261
|
||||
msgid "Docker: https://download.docker.com/mac/stable/Docker.dmg"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:262
|
||||
msgid "Git: https://sourceforge.net/projects/git-osx-installer/files/"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:264
|
||||
msgid ""
|
||||
"After installing docker you should find an icon that looks like a whale "
|
||||
"in the task bar."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:270
|
||||
msgid "*Docker app running*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:272
|
||||
msgid ""
|
||||
"You can verify that docker is running properly by opening the "
|
||||
"**Terminal** app and typing:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:278
|
||||
msgid "Which should return"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:284
|
||||
msgid "To verify that git is installed, simply type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:290
|
||||
msgid "Which should return something similar to the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:296
|
||||
msgid ""
|
||||
"If you get a “bash: git: command not found”, try to restart your "
|
||||
"**Terminal** app and double-check for any errors during the install "
|
||||
"process."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:301
|
||||
msgid ""
|
||||
"Docker on macOS works by running a VM in the background (think of it as a"
|
||||
" “computer emulator”). This VM has a certain amount of memory allocated "
|
||||
"and WebODM can only use as much memory as it’s allocated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:303
|
||||
msgid "Right click the whale icon from the task bar and click **Preferences**..."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:304
|
||||
msgid "Select the **Advanced** tab"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:305
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Adjust the CPUs slider to use half of all available CPUs and the memory "
|
||||
"to use 60-70% of all available memory"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:306
|
||||
msgid "Press **Apply & Restart**"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:312
|
||||
msgid "*Docker advanced settings*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:315
|
||||
msgid "Step 4. Download and Launch WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:317
|
||||
msgid "From a **Terminal** type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:325 ../../source/installation.rst:426
|
||||
msgid "Then open a web browser to http://localhost:8000."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:328
|
||||
msgid "Linux"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:330
|
||||
msgid ""
|
||||
"OpenDroneMap can run on any Linux distribution that supports docker. "
|
||||
"According to `docker’s documentation website "
|
||||
"<https://docs.docker.com/install/>`_ the officially supported "
|
||||
"distributions are CentOS, Debian, Ubuntu and Fedora, with static binaries"
|
||||
" available for others. If you have to pick a distribution solely for "
|
||||
"running OpenDroneMap, Ubuntu is the recommended way to go."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:333
|
||||
msgid "Step 1. Install Requirements"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:335
|
||||
msgid "There are four programs that need to be installed:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:337
|
||||
msgid "Docker"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:338
|
||||
msgid "Git"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:339
|
||||
msgid "Python (2 or 3)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:340
|
||||
msgid "Pip"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:342
|
||||
msgid ""
|
||||
"We cannot possibly cover the installation process for every Linux "
|
||||
"distribution out there, so we’ll limit the instructions to those that are"
|
||||
" distributions officially supported by docker. In all cases it’s just a "
|
||||
"matter of opening a terminal prompt and typing a few commands."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:345
|
||||
msgid "Install on Ubuntu / Debian"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:347 ../../source/installation.rst:359
|
||||
#: ../../source/installation.rst:370 ../../source/installation.rst:381
|
||||
msgid "Commands to type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:357
|
||||
msgid "Install on CentOS / RHEL"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:368
|
||||
msgid "Install on Fedora"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:379
|
||||
msgid "Install on Arch"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:388
|
||||
msgid "Step 2. Check Additional Requirements"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:390
|
||||
msgid ""
|
||||
"In addition to the three programs above, the dockercompose script is also"
|
||||
" needed. Sometimes it’s already installed with docker, but sometimes it "
|
||||
"isn’t. To verify if it’s installed try to type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:396
|
||||
msgid "You should see somethings similar to the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:402
|
||||
msgid "If instead you get something similar to the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:408
|
||||
msgid "you can install it by using pip:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:416
|
||||
msgid "Step 3. Download and Launch WebODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:418
|
||||
msgid "From a terminal type:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:429
|
||||
msgid "Basic Commands and Troubleshooting"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:431
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The cool thing about using docker is that 99% of the tasks you’ll ever "
|
||||
"need to perform while using WebODM can be done via the ./webodm.sh "
|
||||
"script. You have already encountered one of them:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:437
|
||||
msgid ""
|
||||
"which takes care of starting WebODM and setting up a default processing "
|
||||
"node (node-odm-1). If you want to stop WebODM, you can already guess what"
|
||||
" the command is:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:443
|
||||
msgid ""
|
||||
"There are several other commands you can use, along with different flags."
|
||||
" Flags are parameters passed to the ./webodm.sh command and are typically"
|
||||
" prefixed with “–”. The **port** flag for example instructs WebODM to use"
|
||||
" a different network port:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:449
|
||||
msgid "Other useful commands are listed below:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:468
|
||||
msgid ""
|
||||
"`The community forum <https://community.opendronemap.org>`_ is a great "
|
||||
"place to ask for help if you get stuck during any of the installation"
|
||||
" steps and for general questions on using the ./webodm.sh script."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:471
|
||||
msgid "Hello, WebODM!"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:473
|
||||
msgid ""
|
||||
"After running ./webodm.sh start and opening WebODM in the browser, you "
|
||||
"will be greeted with a welcome message and will be asked to create the "
|
||||
"first user. Take some time to familiarize yourself with the web interface"
|
||||
" and explore its various menus."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:479
|
||||
msgid "*WebODM Dashboard*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:481
|
||||
msgid ""
|
||||
"Notice that under the **Processing Nodes** menu there’s a \"node-odm-1\" "
|
||||
"node already configured for you to use. This is a NodeODM node and has "
|
||||
"been created automatically by WebODM. This node is running on the same "
|
||||
"machine as WebODM."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:483
|
||||
msgid ""
|
||||
"If you’ve made it this far, congratulations! Now it’s time to start "
|
||||
"processing some data."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:490
|
||||
msgid "Running on more than one machine"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:492
|
||||
msgid ""
|
||||
"**Optionally:** If you have another computer, you can repeat the "
|
||||
"installation process (install docker, git, python, etc.) and launch a new"
|
||||
" NodeODM node by typing from a Terminal/Git Bash window:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:498
|
||||
msgid ""
|
||||
"The above command asks docker to launch a new container using the "
|
||||
"opendronemap/nodeodm image from Docker Hub (the latest version of "
|
||||
"NodeODM), using port 3000, setting a maximum number of concurrent tasks "
|
||||
"to 1 and to protect the node from unauthorized access using the password "
|
||||
"\"secret\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:500
|
||||
msgid ""
|
||||
"From WebODM you can then press the **Add New** button under **Processing "
|
||||
"Nodes**. For the **hostname/IP** field type the IP of the second "
|
||||
"computer. For the **port** field type “3000”. For the **token** field "
|
||||
"type “secret”. You can also add an optional **label** for your node, such"
|
||||
" as “second computer”. Then press **Save**."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:502
|
||||
msgid ""
|
||||
"If everything went well, you should now have two processing nodes! You "
|
||||
"will be able to process multiple tasks in parallel using two different "
|
||||
"machines."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/installation.rst:504
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/installation.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "In **Source Location** type: https://github.com/Open-DroneMap/WebODM"
|
||||
#~ msgstr ""
|
||||
|
|
@ -1,275 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:01+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/large.rst:4
|
||||
msgid "Splitting Large Datasets"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:6
|
||||
msgid ""
|
||||
"Starting with ODM version ``0.6.0`` you can split up very large datasets "
|
||||
"into manageable chunks (called submodels), running the pipeline on each "
|
||||
"chunk, and then producing merged DEMs, orthophotos and point clouds. The "
|
||||
"process is referred to as \"split-merge\"."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:8
|
||||
msgid ""
|
||||
"Why might you use the split-merge pipeline? If you have a very large "
|
||||
"number of images in your dataset, split-merge will help make the "
|
||||
"processing more manageable on a large machine (it will require less "
|
||||
"memory). If you have many machines all connected to the same network you "
|
||||
"can also process the submodels in parallel, thus allowing for horizontal "
|
||||
"scaling and processing thousands of images more quickly."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:10
|
||||
msgid ""
|
||||
"Split-merge works in WebODM out of the box as long as the processing "
|
||||
"nodes support split-merge, by enabling the ``--split`` option when "
|
||||
"creating a new task."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:13
|
||||
msgid "Calibrate images"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:15
|
||||
msgid ""
|
||||
"Image calibration is recommended (but not required) for large datasets "
|
||||
"because error propagation due to image distortion could cause a bowl "
|
||||
"effect on the models. Calibration instructions can be found at "
|
||||
"`Calibrate Images <tutorials.html#calibrating-the-camera>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:21
|
||||
msgid ""
|
||||
"Bowling effect on point cloud over 13,000+ image dataset collected by "
|
||||
"World Bank Tanzania over the flood prone Msimbasi Basin, Dar es Salaam, "
|
||||
"Tanzania."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:24
|
||||
msgid "Local Split-Merge"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:26
|
||||
msgid ""
|
||||
"Splitting a dataset into more manageable submodels and sequentially "
|
||||
"processing all submodels on the same machine is easy! Just use "
|
||||
"``--split`` and ``--split-overlap`` to decide the the average number of "
|
||||
"images per submodels and the overlap (in meters) between submodels "
|
||||
"respectively"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:32
|
||||
msgid ""
|
||||
"If you already know how you want to split the dataset, you can provide "
|
||||
"that information and it will be used instead of the clustering algorithm."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:34
|
||||
msgid ""
|
||||
"The grouping can be provided by adding a file named image_groups.txt in "
|
||||
"the main dataset folder. The file should have one line per image. Each "
|
||||
"line should have two words: first the name of the image and second the "
|
||||
"name of the group it belongs to. For example::"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:42
|
||||
msgid ""
|
||||
"will create 3 submodels. Make sure to pass ``--split-overlap 0`` if you "
|
||||
"manually provide a ``image_groups.txt`` file."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:46
|
||||
msgid "Distributed Split-Merge"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:48
|
||||
msgid ""
|
||||
"ODM can also automatically distribute the processing of each submodel to "
|
||||
"multiple machines via `NodeODM "
|
||||
"<https://github.com/OpenDroneMap/NodeODM>`_ nodes, orchestrated via "
|
||||
"`ClusterODM <https://github.com/OpenDroneMap/ClusterODM>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:55
|
||||
msgid "Getting Started with Distributed Split-Merge"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:57
|
||||
msgid "The first step is start ClusterODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:63
|
||||
msgid ""
|
||||
"Then on each machine you want to use for processing, launch a NodeODM "
|
||||
"instance via"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:69
|
||||
msgid ""
|
||||
"Connect via telnet to ClusterODM and add the IP addresses/port of the "
|
||||
"machines running NodeODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:84
|
||||
msgid "Make sure you are running version ``1.5.1`` or higher of the NodeODM API."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:86
|
||||
msgid ""
|
||||
"At this point, simply use the ``--sm-cluster`` option to enable "
|
||||
"distributed split-merge"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:93
|
||||
msgid "Understanding the Cluster"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:95
|
||||
msgid ""
|
||||
"When connected via telnet, it is possible to interrogate what is "
|
||||
"happening on the cluster. For example, we can use the command HELP to "
|
||||
"find out available commands"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:118
|
||||
msgid ""
|
||||
"If, for example, the NodeODM instance wasn't active when ClusterODM "
|
||||
"started, we might list nodes and see something as follows"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:125
|
||||
msgid ""
|
||||
"To address this, we can start up our local node (if not already started),"
|
||||
" and then perform a ``NODE UPDATE``"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:135
|
||||
msgid "Accessing the Logs"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:137
|
||||
msgid ""
|
||||
"While a process is running, it is also possible to list the tasks, and "
|
||||
"view the task output"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:145
|
||||
msgid "Autoscaling ClusterODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:147
|
||||
msgid ""
|
||||
"ClusterODM also includes the option to autoscale on multiple platforms, "
|
||||
"including, to date, Amazon and Digital Ocean. This allows users to reduce"
|
||||
" costs associated with always-on instances as well as being able to scale"
|
||||
" processing based on demand."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:149
|
||||
msgid "To setup autoscaling you must:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:151
|
||||
msgid "Have a functioning version of NodeJS installed and then install ClusterODM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:159
|
||||
msgid "Make sure docker-machine is installed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:160
|
||||
msgid "Setup a S3-compatible bucket for storing results."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:161
|
||||
msgid ""
|
||||
"Create a configuration file for `DigitalOcean "
|
||||
"<https://github.com/OpenDroneMap/ClusterODM/blob/master/docs/digitalocean.md>`_"
|
||||
" or `Amazon Web Services "
|
||||
"<https://github.com/OpenDroneMap/ClusterODM/blob/master/docs/aws.md>`_."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:163
|
||||
msgid "You can then launch ClusterODM with"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:169
|
||||
msgid "You should see something similar to following messages in the console"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:177
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You should always have at least one static NodeODM node attached to "
|
||||
"ClusterODM, even if you plan to use the autoscaler for all processing. If"
|
||||
" you setup auto scaling, you can't have zero nodes and rely 100% on the "
|
||||
"autoscaler. You need to attach a NodeODM node to act as the \"reference "
|
||||
"node\" otherwise ClusterODM will not know how to handle certain requests "
|
||||
"(for the forwarding the UI, for validating options prior to spinning up "
|
||||
"an instance, etc.). For this purpose, you should add a \"dummy\" NodeODM "
|
||||
"node and lock it"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:187
|
||||
msgid "This way all tasks will be automatically forwarded to the autoscaler."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:190
|
||||
msgid "Limitations"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:192
|
||||
msgid ""
|
||||
"The 3D textured meshes are currently not being merged as part of the "
|
||||
"workflow (only point clouds, DEMs and orthophotos are)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:194
|
||||
msgid ""
|
||||
"GCPs are fully supported, however, there needs to be at least 3 GCP "
|
||||
"points on each submodel for the georeferencing to take place. If a "
|
||||
"submodel has fewer than 3 GCPs, a combination of the remaining GCPs + "
|
||||
"EXIF data will be used instead (which is going to be less accurate). We "
|
||||
"recommend using the ``image_groups.txt`` file to accurately control the "
|
||||
"submodel split when using GCPs."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:197
|
||||
msgid "Acknowledgments"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:198
|
||||
msgid ""
|
||||
"Huge props to Pau and the folks at Mapillary for their amazing "
|
||||
"contributions to OpenDroneMap through their OpenSfM code, which is a key "
|
||||
"component of the split-merge pipeline. We look forward to further pushing"
|
||||
" the limits of OpenDroneMap and seeing how big a dataset we can process."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/large.rst:200
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/large.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,77 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/multispectral.rst:2
|
||||
msgid "Multispectral Support"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:4
|
||||
msgid ""
|
||||
"Since version 0.9.9 ODM has basic support for radiometric normalization, "
|
||||
"which is able to generate reflectance orthophotos from multispectral "
|
||||
"cameras. Multispectral cameras capture multiple shots of the scene using "
|
||||
"different band sensors."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:7
|
||||
msgid "Hardware"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:9
|
||||
msgid ""
|
||||
"While we aim to support as many cameras as possible, multispectral "
|
||||
"support has been developed using the following cameras, so they will work"
|
||||
" better:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:11
|
||||
msgid "`MicaSense RedEdge-MX and Altum <https://www.micasense.com/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:12
|
||||
msgid "`Sentera 6X <https://sentera.com/6x/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:14
|
||||
msgid ""
|
||||
"Other cameras might also work. You can help us expand this list by "
|
||||
"`sharing datasets <https://community.opendronemap.org/c/datasets/10>`_ "
|
||||
"captured with other cameras."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:17
|
||||
msgid "Usage"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:19
|
||||
msgid ""
|
||||
"Process all the images from all bands at once (do not separate the bands "
|
||||
"into multiple folders) and pass the `--radiometric-calibration` parameter"
|
||||
" to enable radiometric normalization. If the images are part of a multi-"
|
||||
"camera setup, the resulting orthophoto will have N bands, one for each "
|
||||
"camera (+ alpha)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/multispectral.rst:25
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/multispectral.rst>`_"
|
||||
msgstr ""
|
||||
|
|
@ -1,141 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2018, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/outputs.rst:2
|
||||
msgid "OpenDroneMap Outputs"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:4
|
||||
msgid "Listed below are some of the useful outputs ODM produces."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:7
|
||||
msgid "Point Cloud"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:9
|
||||
msgid ""
|
||||
"``odm_georeferencing/odm_georeferenced_model.ply/laz/csv`` -- The "
|
||||
"georeferenced point cloud in different file formats"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:15
|
||||
msgid ""
|
||||
"*Point cloud over State University Zanzibar, courtesy of* `Khadija "
|
||||
"Abdullah Ali <https://www.linkedin.com/in/khadija-abdulla-ali-"
|
||||
"56b4044a/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:19
|
||||
msgid "3D Textured Model"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:21
|
||||
msgid ""
|
||||
"``odm_texturing/odm_textured_model.obj`` -- The textured surface mesh "
|
||||
"``odm_texturing/odm_textured_model_geo.obj`` -- The georeferenced and "
|
||||
"textured surface mesh"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:24
|
||||
msgid ""
|
||||
"You can access the point cloud and textured meshes using MeshLab. Open "
|
||||
"MeshLab, and choose File:Import Mesh and choose your textured mesh from a"
|
||||
" location similar to the following: "
|
||||
"``odm_texturing\\odm_textured_model.obj``"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:30
|
||||
msgid ""
|
||||
"*Textured mesh courtesy of* `OpenDroneMap "
|
||||
"<https://twitter.com/opendronemap>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:33
|
||||
msgid "Orthophoto"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:35
|
||||
msgid ""
|
||||
"``odm_orthophoto/odm_orthphoto.png`` -- The orthophoto, but this is a "
|
||||
"simple png, which doesn't have any georeferencing information"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:37
|
||||
msgid ""
|
||||
"``odm_orthophoto/odm_orthphoto.tif`` -- GeoTIFF Orthophoto. You can use "
|
||||
"it in QGIS as a raster layer."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:43
|
||||
msgid ""
|
||||
"*Orthophoto over State University Zanzibar, courtesy of* `Khadija "
|
||||
"Abdullah Ali <https://www.linkedin.com/in/khadija-abdulla-ali-"
|
||||
"56b4044a/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:46
|
||||
msgid "DTM/DSM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:48
|
||||
msgid ""
|
||||
"DTM/DSM will only be created if the ``--dtm`` or ``--dsm`` options are "
|
||||
"used. See `tutorial on elevation models "
|
||||
"<https://docs.opendronemap.org/tutorials.html#creating-digital-elevation-"
|
||||
"models>`_ for more options in creating."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:50
|
||||
msgid "Data will be stored in:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:52
|
||||
msgid "``odm_dem/dtm.tif``"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:53
|
||||
msgid "``odm_dem/dsm.tif``"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:59
|
||||
msgid ""
|
||||
"*Digital surface model over State University Zanzibar, courtesy of* "
|
||||
"`Khadija Abdullah Ali <https://www.linkedin.com/in/khadija-abdulla-ali-"
|
||||
"56b4044a/>`_"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:62
|
||||
msgid "List of all outputs"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/outputs.rst:109
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/outputs.rst>`_"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "*Textured mesh over State University "
|
||||
#~ "Zanzibar, courtesy of* `Khadija Abdullah "
|
||||
#~ "Ali <https://www.linkedin.com/in/khadija-abdulla-"
|
||||
#~ "ali-56b4044a/>`_"
|
||||
#~ msgstr ""
|
||||
|
|
@ -1,92 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2020, OpenDroneMap
|
||||
# This file is distributed under the same license as the OpenDroneMap
|
||||
# package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenDroneMap 0.9.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-06 21:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
#: ../../source/requesting-features.rst:2
|
||||
msgid "How To Request Features"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:4
|
||||
msgid ""
|
||||
"All software needs user feedback and feature requests, to grow and "
|
||||
"maintain alignment with the needs of its users."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:7
|
||||
msgid ""
|
||||
"OpenDroneMap is FOSS software. Free and open source (FOSS) projects are "
|
||||
"interesting from the inside and outside: from the outside, successful "
|
||||
"ones feel like they should be able to do anything, and it’s hard to know "
|
||||
"what a reasonable request is. From the inside of a project, they can feel"
|
||||
" very resource constrained: largely by time, money, and opportunity "
|
||||
"overload."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:13
|
||||
msgid ""
|
||||
"A feature request can be submitted as issues on the applicable Github "
|
||||
"repository (e.g., `WebODM "
|
||||
"<https://github.com/OpenDroneMap/WebODM/issues>`_ or `ODM "
|
||||
"<https://github.com/OpenDroneMap/ODM/issues>`_ or similar) or more simply"
|
||||
" as a discussion topic on `the community forum "
|
||||
"<https://community.opendronemap.org/>`_. Try to start by searching these "
|
||||
"sources to see if someone else has already brought it up. Sometimes a "
|
||||
"feature is already in the works, or has at least been discussed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:19
|
||||
msgid ""
|
||||
"And importantly, the trick is to listen: if someone within the project "
|
||||
"says: \"This is a big lift, we need MONEY or TIME or SOMEONE TO HELP CODE"
|
||||
" IT\" (or possibly a combination of the three) then there are two answers"
|
||||
" that work really well in response:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:23
|
||||
msgid ""
|
||||
"*Ok. I didn’t know it was a big feature request! I hope someone comes "
|
||||
"along with the necessary resources. As a community member, I would be "
|
||||
"happy to be an early user and tester!*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:25
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:27
|
||||
msgid ""
|
||||
"*Let’s figure out if we can put together the resources to get this done! "
|
||||
"Here’s what I can contribute toward it: …*"
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:29
|
||||
msgid ""
|
||||
"We are glad you are excited to see new features added to the project. "
|
||||
"Some new features need support, and some are easier to implement. We'll "
|
||||
"do our best to help you understand where your request falls, and we "
|
||||
"appreciate any support you can provide."
|
||||
msgstr ""
|
||||
|
||||
#: ../../source/requesting-features.rst:33
|
||||
msgid ""
|
||||
"`Help edit these docs! "
|
||||
"<https://github.com/OpenDroneMap/docs/blob/publish/source/requesting-"
|
||||
"features.rst>`_"
|
||||
msgstr ""
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Ładowanie…
Reference in New Issue