diff --git a/_build/.doctrees/content/lessons/l1/tutorial.doctree b/_build/.doctrees/content/lessons/l1/tutorial.doctree index 4c358448..7bb6efec 100644 Binary files a/_build/.doctrees/content/lessons/l1/tutorial.doctree and b/_build/.doctrees/content/lessons/l1/tutorial.doctree differ diff --git a/_build/.doctrees/environment.pickle b/_build/.doctrees/environment.pickle index 9246d532..ed23b9ed 100644 Binary files a/_build/.doctrees/environment.pickle and b/_build/.doctrees/environment.pickle differ diff --git a/_build/html/_sources/content/lessons/l1/tutorial.md b/_build/html/_sources/content/lessons/l1/tutorial.md index c788468c..91d55fbe 100644 --- a/_build/html/_sources/content/lessons/l1/tutorial.md +++ b/_build/html/_sources/content/lessons/l1/tutorial.md @@ -82,6 +82,7 @@ Proceed by creating the following project_directory in the folder where you have Herein folders are named without extensions, and filenames are given extensions. Text between {} indicates variable names. +````{tabbed} Handheld data ``` {project_directory} (The folder with all files related to this project) | overview_img.{ext} @@ -106,6 +107,8 @@ Text between {} indicates variable names. | ... ├───────gcps | (We'll get back to this in a later session) +├───────GNSS +| (We'll get back to this in a later session) ├───export (where you place export models and files to) ... └───metashape (This is where you save your Agisoft Metashape projects to) @@ -114,24 +117,78 @@ Text between {} indicates variable names. {metashape_project_name}_processing_report.pdf (optionally: {metashape_project_name}.log) ``` +```` -The standardised project structure (as we will see later on) is also used for automated processing. +````{tabbed} UAV data +``` +{project_directory} (The folder with all files related to this project) +| overview_img.{ext} +| description.txt +├───config (where you place your configuration files) + {cfg_0001}.yml + {cfg_0002}.yml + ... +├───data (where you unzipped the files to) +├───────f0001 (The folder with images acquired on the first flight) +| {img_0001}.{ext} +| {img_0002}.{ext} +| ... +├───────f0002 (The folder with images acquired on the second flight) +| {img_0001}.{ext} +| {img_0002}.{ext} +| ... +| ... +├───────f9999 (The folder with images acquired on the last flight) +| {img_0001}.{ext} +| {img_0002}.{ext} +| ... +├───────gcps +| (We'll get back to this in a later session) +├───────GNSS +| (We'll get back to this in a later session) +├───export (where you place export models and files to) + ... +└───metashape (This is where you save your Agisoft Metashape projects to) + {metashape_project_name}.psx + .{metashape_project_name}.files + {metashape_project_name}_processing_report.pdf + (optionally: {metashape_project_name}.log) +``` +```` + +The standardised project structures (as we will see later on) are important for automated processing and archiving. +The project structures are identical in principle, only differing in the way images are sorted. ### Photo set -Having created the standardised project structure, proceed with extracting all your taken images to the following directory: +Having created the standardised project structure, proceed with extracting your taken images to the following directory: + +````{tabbed} Single folder/acquisition ``` {project_directory}\data\100MEDIA ``` +```` -```{admonition} More than 999 images? -:class: suggestion +````{tabbed} Single acquisition with 1000 images +``` +{project_directory}\data\100MEDIA (includes up to 999 images) +{project_directory}\data\101MEDIA (includes remaining images) +``` +```` -In case your project contains more than 999 images, make sure to utilise multiple media folders in the *data_directory*. -In other words, create as many *{XXX}MEDIA* subdirectories as needed, and limit their contents to 999 images. -This is especially useful when dealing with non-unique filenames, as the different directories prevent files being overwritten. +````{tabbed} UAV acquisition with 3 flights +``` +{project_directory}\data\f0001 +{project_directory}\data\f0002 +{project_directory}\data\f0003 ``` +```` + +In case the image count exceeds 999 images, make sure to utilise multiple folders in the *data_directory*. +While you are at it, why not sort the images by flight or acquisition to improve your data structure? +For instance, those [digitising hand-sized samples](../l4/hsstutorial "hss_tutorial"), or who have acquired data over multiple UAV flights, may find it beneficial to sort the data in specific ways. +Not only is it easier to find the data that way, but it also prevents accidental data-overwrites of data with non-unique filenames! ````{admonition} Want to follow along without your own data? :class: suggestion @@ -157,7 +214,7 @@ Verify that this is indeed the case by double clicking one of the *cameras* in t ```{admonition} Save often! :class: tip It is important to save your work often. -Make a habbit of saving at least after every step. +Make a habit of saving at least after every step. To do so, proceed to *Save as...* under *File* in the menu bar, and save your project in the *project_directory/metashape* directory that you created when extracting in data. ``` diff --git a/_build/html/content/lessons/l1/tutorial.html b/_build/html/content/lessons/l1/tutorial.html index e139269b..ea7786aa 100644 --- a/_build/html/content/lessons/l1/tutorial.html +++ b/_build/html/content/lessons/l1/tutorial.html @@ -681,6 +681,10 @@
{project_directory} (The folder with all files related to this project)
| overview_img.{ext}
| description.txt
@@ -704,6 +708,46 @@ A standardised project environment
+
+{project_directory} (The folder with all files related to this project)
+| overview_img.{ext}
+| description.txt
+├───config (where you place your configuration files)
+ {cfg_0001}.yml
+ {cfg_0002}.yml
+ ...
+├───data (where you unzipped the files to)
+├───────f0001 (The folder with images acquired on the first flight)
+| {img_0001}.{ext}
+| {img_0002}.{ext}
+| ...
+├───────f0002 (The folder with images acquired on the second flight)
+| {img_0001}.{ext}
+| {img_0002}.{ext}
+| ...
+| ...
+├───────f9999 (The folder with images acquired on the last flight)
+| {img_0001}.{ext}
+| {img_0002}.{ext}
+| ...
+├───────gcps
+| (We'll get back to this in a later session)
+├───────GNSS
+| (We'll get back to this in a later session)
├───export (where you place export models and files to)
...
└───metashape (This is where you save your Agisoft Metashape projects to)
@@ -713,20 +757,44 @@ A standardised project environment
Photo set¶
-Having created the standardised project structure, proceed with extracting all your taken images to the following directory:
+Having created the standardised project structure, proceed with extracting your taken images to the following directory:
+
+
+
{project_directory}\data\100MEDIA
-
-More than 999 images?
-In case your project contains more than 999 images, make sure to utilise multiple media folders in the data_directory.
-In other words, create as many {XXX}MEDIA subdirectories as needed, and limit their contents to 999 images.
-This is especially useful when dealing with non-unique filenames, as the different directories prevent files being overwritten.
+
+
+{project_directory}\data\100MEDIA (includes up to 999 images)
+{project_directory}\data\101MEDIA (includes remaining images)
+
+
+
+
+
+{project_directory}\data\f0001
+{project_directory}\data\f0002
+{project_directory}\data\f0003
+
+
+
+
+In case the image count exceeds 999 images, make sure to utilise multiple folders in the data_directory.
+While you are at it, why not sort the images by flight or acquisition to improve your data structure?
+For instance, those digitising hand-sized samples, or who have acquired data over multiple UAV flights, may find it beneficial to sort the data in specific ways.
+Not only is it easier to find the data that way, but it also prevents accidental data-overwrites of data with non-unique filenames!
Want to follow along without your own data?
Go ahead and download the package, then extract the archive’s contents as per the above.
@@ -747,7 +815,7 @@ Adding photos
Save often!
It is important to save your work often.
-Make a habbit of saving at least after every step.
+Make a habit of saving at least after every step.
To do so, proceed to Save as… under File in the menu bar, and save your project in the project_directory/metashape directory that you created when extracting in data.
diff --git a/_build/html/searchindex.js b/_build/html/searchindex.js
index 54f365c2..98458342 100644
--- a/_build/html/searchindex.js
+++ b/_build/html/searchindex.js
@@ -1 +1 @@
-Search.setIndex({docnames:["content/lessons/about/cite","content/lessons/about/seismic_lab","content/lessons/about/software","content/lessons/about/zbiblio","content/lessons/l1/exercise1","content/lessons/l1/quiz","content/lessons/l1/sfm_photogrammetry","content/lessons/l1/tutorial","content/lessons/l2/exercise2","content/lessons/l2/gcps","content/lessons/l2/markers","content/lessons/l2/overview","content/lessons/l3/Batch","content/lessons/l3/overview","content/lessons/l3/python","content/lessons/l4/hss_field_exercise","content/lessons/l4/hss_lab_exercise","content/lessons/l4/hss_overview","content/lessons/l4/hss_tutorial","content/lessons/l4/quiz","content/lessons/l5/geomodel_overview","content/lessons/l5/geomodel_tutorial","content/lessons/suppl/best_practices","content/lessons/suppl/metadata_lists","content/lessons/suppl_dgnss/dgnss_data_downloading","content/lessons/suppl_dgnss/leica_infinity","content/lessons/suppl_dgnss/topodrone_ppk","landing-page"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":4,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.intersphinx":1,"sphinxcontrib.bibtex":7,sphinx:56},filenames:["content\\lessons\\about\\cite.md","content\\lessons\\about\\seismic_lab.md","content\\lessons\\about\\software.md","content\\lessons\\about\\zbiblio.md","content\\lessons\\l1\\exercise1.md","content\\lessons\\l1\\quiz.md","content\\lessons\\l1\\sfm_photogrammetry.md","content\\lessons\\l1\\tutorial.md","content\\lessons\\l2\\exercise2.md","content\\lessons\\l2\\gcps.md","content\\lessons\\l2\\markers.md","content\\lessons\\l2\\overview.md","content\\lessons\\l3\\Batch.md","content\\lessons\\l3\\overview.md","content\\lessons\\l3\\python.md","content\\lessons\\l4\\hss_field_exercise.md","content\\lessons\\l4\\hss_lab_exercise.md","content\\lessons\\l4\\hss_overview.md","content\\lessons\\l4\\hss_tutorial.md","content\\lessons\\l4\\quiz.md","content\\lessons\\l5\\geomodel_overview.md","content\\lessons\\l5\\geomodel_tutorial.md","content\\lessons\\suppl\\best_practices.md","content\\lessons\\suppl\\metadata_lists.md","content\\lessons\\suppl_dgnss\\dgnss_data_downloading.md","content\\lessons\\suppl_dgnss\\leica_infinity.md","content\\lessons\\suppl_dgnss\\topodrone_ppk.md","landing-page.md"],objects:{},objnames:{},objtypes:{},terms:{"0":[2,4,7,8,9,14,23,24],"00":14,"0000":23,"0002":23,"00345":4,"005":3,"008":[],"01":[3,14],"010":14,"0138":4,"015":3,"02":[],"021":3,"03":[],"0374":23,"04":23,"047":23,"05":3,"060":[],"061":[],"067":[],"068":[],"07":14,"08":3,"09":[14,23],"1":[2,3,6,7,9,10,13,14,15,17,23,24],"10":[3,4,7,23],"100":[7,9,14,17,24],"100000":14,"1000x1000":7,"100media":[7,14],"100x100":7,"1016":3,"101media":7,"1024":24,"1039":7,"11":14,"110":14,"116":[],"11797":[],"12":[3,4,14],"123456asba":23,"126707":23,"128":14,"13":[],"137":23,"14":23,"15":[10,14,15,17],"152":10,"16":9,"16384":7,"164":10,"169":10,"17":7,"179":3,"18":23,"183":10,"184":10,"19":7,"199media":7,"19th":24,"1sec":24,"1tb":24,"1x":18,"1x1":9,"2":[2,3,6,9,10,11,14,16,23,24],"20":14,"200":[7,18],"2002":10,"2006":[],"2009":3,"2012":3,"2014":3,"2016":3,"2018":3,"2019":[3,4,23],"202":10,"2020":[2,3,14,23],"2021":7,"2022":[4,14,24],"20220419":24,"20x20":14,"21":14,"2172":10,"22":24,"221":10,"222":[7,27],"224":10,"2280":3,"2292":3,"23":9,"24":[17,18,24],"24hour":24,"25":[],"255":7,"258":[],"259":[],"26":10,"260":[],"261":[],"262":[],"267":[],"27":[],"28":10,"2843964419":[],"29":[],"2d":[6,11,23],"3":[2,3,4,6,7,9,10,14,17,18,23,24],"30":18,"300":3,"31":[],"314":3,"32":17,"323":[],"32633":[11,14,23],"33":[14,17],"330":3,"333":[],"335":[],"336":[],"337":[],"33763246":10,"33836842":10,"3390":[3,23],"3390649":10,"33907352":10,"33962431":10,"33972477":10,"33n":[11,14],"34":17,"34003023":10,"34011196":10,"3598":10,"36":[17,18],"360":18,"366":24,"3d":[6,11,14,15,18,23],"4":[3,6,8,10,11,14,18,21,23,24],"40":[21,24],"4000":14,"40400":[11,14,23],"4096":[7,14],"41":[],"4326":[10,11,14],"439":[],"45":24,"450":[],"46":14,"47":[3,14],"48":[14,18,23],"488":[],"49":14,"5":[3,4,7,9,10,14,15,18],"50":[7,14,18,23],"500":7,"50x50":9,"526":4,"527":14,"53":23,"532":[],"534":[],"535":[],"54":23,"540":[],"5401":10,"544":[],"546":[],"547":[],"548":[],"549":[],"550":[],"551":[],"553":14,"554":14,"555":14,"556":14,"557":14,"56":[],"5600":18,"57":[],"5840":7,"588810211":[],"59":[],"5x5":[],"6":[3,7,9,10,23],"60":24,"600":[],"6017":23,"624":23,"6300":23,"639":[],"643":23,"656":[],"6672":10,"6924":10,"7":[2,3,7,9,10,14,23],"70":[],"704":[],"71":[],"72":[3,14],"73":14,"74":14,"743":14,"75":14,"7514":10,"756":[],"757":[],"76":14,"7791":10,"78":10,"8":[3,4,10,14,17,18],"80":4,"8192":14,"822519927":14,"82920799":10,"82944846":10,"82992376":10,"83061642":10,"83085931":10,"83092679":10,"83094077":10,"83193045":10,"834377757":[],"84":11,"856":[],"858":[],"860":[],"861":[],"9":[],"90":[17,24],"9001":[10,11,22],"903":[],"908":[],"910":[],"925c0f05104b491f818925839fb5133b":23,"932":4,"9415":23,"949":14,"950":14,"96":23,"98":23,"99":14,"\u00e5ret":24,"\u00e5rstall":24,"\u00e9":3,"\u00ed":3,"\u00f1":3,"\u00fc":3,"andr\u00e9":23,"b\u00fcnsow":23,"barents\u00f8ya":[4,23],"bj\u00f8rn\u00f8ya":[4,23],"break":14,"case":[2,7,9,14,21,27],"default":[7,14],"do":[2,6,10,14,17,18,21],"edge\u00f8ya":[4,23],"export":[4,7,8,10,14,21],"final":[2,7,9,10,15,17],"float":24,"function":[10,14],"import":[4,7,8,9,10,14,17,18,24],"int":23,"km\u00e2\u00b2":23,"kvit\u00f8ya":[4,23],"long":[2,4,7,8,13,14,18,21],"m\u00e2\u00b2":23,"new":[8,10,14,21],"nordenski\u00f6ld":23,"null":14,"p\u00e5":24,"public":[0,7],"return":[21,24],"s\u00f8rkapp":23,"short":[6,17],"switch":7,"throw":16,"tidsoppl\u00f8sningen":24,"true":[14,24],"try":[7,9,14,18,24,27],"tusen\u00f8yan":[4,23],"while":[2,7,8,9,10,13,14,17,18,21],A:[2,3,8,9,10,11,14,15,18],And:[2,9],As:[4,6,7,8,9,10,14,16,17,21],At:[4,14,24],Be:[10,15],By:[17,18],FOR:3,For:[7,9,10,11,14,17,21,24],IN:3,If:[2,5,7,9,14,18,19,21],In:[2,8,9,10,13,14,17,18,21,24],Is:[7,14],It:[1,2,4,6,7,9,10,14,18,21],No:[1,7,9,10,14,27],On:[7,9],One:[6,7,8,10,21],Or:21,That:[2,7,9,21],The:[0,1,4,6,7,9,10,12,14,15,17,18,21,23],Then:[7,8,9,10,18],There:[7,13,18],These:[7,9,10,14,24,27],To:[0,2,7,10,18],With:[2,7,9],__init__:[],_mask:14,_processing_report:7,a3:9,a4:8,abc2:[],abi3:2,abl:[4,7,8,9],about:[9,17],abov:[7,10,14,18,27],absolut:[4,9,14,17],accept:10,access:[1,2,8,10,14,17,21],accompani:[4,8],accord:14,accordingli:14,account:[18,27],accur:[3,7,9,17,21],accuraci:[3,10,14],achiev:[9,11,21],acknowledg:[2,14],acq:[],acq_camera_len:23,acq_camera_model:23,acq_dat:23,acq_gcp_numb:23,acq_gcp_spac:23,acq_georeferenc:23,acq_refer:23,acquir:[4,17,18,24],acquisit:[7,9,17,27],acquisition_camera_len:4,acquisition_camera_model:4,acquisition_d:4,acquisition_marker_typ:4,acquisition_refer:4,acquist:[],across:[10,17],action:7,activ:[10,14,21],actual:[7,10],ad:[10,14,16,21],adapt:[7,16,18],adaptive_fit:14,adaptiveorthophotomap:14,add:[7,10,14,21],add_photo:[],addgcp:14,addit:[2,6,7,8,9,10,17,18,21,24,27],addphoto:14,address:[9,14,27],adept:[],adequ:7,adjust:[14,17,18],adolf:23,advanc:[7,27],advis:10,aerial:3,af:18,affect:17,affili:23,affiliation1:[],affiliation2:[],affiliation3:[],after:[4,6,7,8,10,12,14,15,18],ag222:4,ag:[3,7],again:[7,14],aggress:14,aggressivefilt:14,agisoft:[1,4,9,14,16,23,27],ahead:7,ahem:7,aid:21,aim:[7,9,17,27],ain:14,al:[6,17,18,23],albeit:[9,10],albert:23,alfonso:3,algorithm:[6,8],alig:14,align:[11,14,17],alignphoto:14,all:[2,4,6,7,8,9,10,12,14,15,16,17,18,21,24,27],alloc:7,allow:[6,7,9,10,12,13,14,17,18,20,21],alon:6,along:[6,9,18,21],alongsid:[7,27],alpha:18,alreadi:2,also:[1,2,4,6,7,9,10,14,15,17,21,23,27],altern:[7,14,24],although:7,altimetri:9,altitud:[9,10,23],alwai:[2,7,8,9,10,11,12,13,17,18,21],amaz:6,amongst:27,amount:[6,9],amp:[],an:[2,4,6,7,8,9,10,13,14,16,17,18,21,23,24,27],anaconda:[2,14],analys:7,analyz:14,analyzephoto:14,angl:[4,6,22],ani:[1,2,6,7,8,14,15,16,17],anim:17,anna:14,annot:20,anoth:12,answer:4,anyth:7,ap:14,apertur:[],api:2,app:[],appdata:14,appear:[9,10,18],appli:[3,9,15,17],applic:[1,2,3,4,9],approach:[7,27],appropri:10,approx:7,april:24,ar:[1,2,4,6,7,8,9,10,11,13,14,17,18,20,21,24],arbitrari:14,arcex:[2,14],arcgi:1,archiv:[3,4,7,10,27],arctic:[1,7,9,27],area:[7,9,15,17],aris:[4,7],around:[6,9,10,16,17,18],arrow:18,artefact:15,articl:10,artifact:4,artifici:9,aruco:[8,9,14,23,27],aruco_dict:14,asda:14,asdasfasd:14,asdasx:[],ask:[7,17,24],aspect:7,assess:[3,9],assign:[7,11],associ:[3,6,9],assum:[7,14],assur:[],attempt:7,attr:24,attribut:21,attributeerror:[],augment:9,author:0,auto:18,autom:[2,7,8,12,15,16,17,18,27],automat:[3,6,7,8,9,10,14,17,18,23],automated_agisoft_document:14,automated_metashap:[2,14],automated_metashape_notebook:14,automatedprocess:14,automis:[9,10],autoplai:[],autostart:[],avail:[0,2,7,9,10,14,24],averag:4,averageblend:14,avoid:18,awai:[9,13],awar:10,b2cb2ad336dd402eb3dc4222bb03d4bd:17,b:9,bachelor:27,back:[1,7,15,25,26],backbon:27,background:[10,14,17],bad:[7,14],balanc:[17,18],bar:[4,7,14,18,24],bar_len:24,barcod:9,bare:2,base:[2,3,6,7,10,11,16],basic:[2,4,7,9,27],batch_gui:12,bbo:[],becaus:7,becom:[6,7],been:[6,7,10,15,16,17,18,21],befor:[4,10],begin:7,being:[7,9,10,13],believ:21,below:[2,4,6,7,10,14,15,17,24],beneath:18,benefit:[7,27],best:[4,7,9,24],betlem:[2,3,7,14,17,18,23,24],better:[7,15,18],between:[2,4,6,7,8,9,11,14,15,17,18,21],bf3b54faa2554771a6c49c30638544fb:[],big:[1,7,8,18],binari:[8,9,10],birchal:[2,3,14],bit:[7,10],black:10,blank:10,bleach:17,blender:[1,20],blending_mod:14,blob:7,blue:7,bluetooth:18,blur:[17,18],bone:2,book:0,border:10,borehole_identifi:23,borehole_nam:23,both:[2,8,9,10,18,21],bottom:18,bottomleft:14,bottomright:14,boulder:[],box:[15,18],brand:[],brasington:3,bright:[17,18],brighter:17,brows:[7,10,14],browser:[5,19],bug:27,build:14,builddem:14,builddensecloud:14,builddepthmap:14,buildmesh:14,buildmodel:14,buildtextur:14,buildtiledmodel:14,built:[15,17,23],buldmodel:14,button:[10,14,18,21],c:[2,9,10,14,24],ca:4,calc:[],calcul:[6,7,14,15,21],calibr:[],call:[6,14],callback:24,camera:[4,6,9,11,14,17,23],cameramap:14,campaign:[],can:[2,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,21,24],canva:9,capabl:21,captur:[6,17,18],card:17,care:[9,15],carrascosa:3,carricondo:3,carvaj:3,categori:23,caution:14,cbucklei:[],cd:2,ceil:24,cell:14,center:[10,18],centimetr:[15,17],centr:[4,7,8,9,14,17],central:9,certain:12,certainli:9,cfg:14,cfg_0001:7,cfg_0002:7,chain:7,chang:[2,7,10,14,17,18,21,23,27],channel:2,chapter:9,characteris:[3,7],chdir:24,check:[7,10,17,18,24,25,26],checkpoint:7,choos:[4,10],chose:[7,10],chosen:[7,18],chunk:[7,10,12,14],circl:[10,17],circumst:7,classifygroundpoint:14,clean:1,clear:18,cli:2,click:[7,10,14,17,18,21],close:[9,14,15,21],closer:7,cloud:[1,4,6,11,14,21],clound:11,cm2:23,cm3:[15,23],cm:[9,14,23],coarsen:14,code:[7,11,14,15],coffe:1,cohen:24,coincid:17,collect:[9,15],collector:4,colon:14,color:[7,14,18],colour:[6,7,10],column:10,com:[14,17],combin:[6,7,9,11,21],come:[7,8,9,17,20,27],comma:10,command:[2,7,13],comment:[14,23],common:[6,7,10,11,24],commonli:9,compar:[7,9,14,17,21],compat:[7,14,18],compens:17,compet:27,compil:0,complet:[4,7,8,10,14,15,16,18],compon:[6,7,11],compos:11,compress:7,compris:17,comput:[1,2,6,7,8,12,14,17],concept:[8,27],concis:6,conclus:9,conda:[14,24],conduct:[1,7,9,27],confid:[6,9,14,17],confidenti:1,config:[7,10,14],config_fil:14,configur:[7,10,17,23],conform:8,conjunct:17,connect:[6,7,24,27],consid:[4,7,9,17],consist:[10,14,17,27],constrain:[7,21],construct:[6,25,26],contact:[7,24],contain:[6,7,11,17],content:[1,7,14],continu:14,contour:9,contribut:[17,21],contributor:0,control:[3,11,14,15,17,18],convers:[3,15],convert_start_end_dates_to_year_day_of:24,coordin:[3,6,8,9,14,15],copi:[1,4,7,14,17],core:[3,17,23],corner:[7,8,9,14,18],correct:[1,7,15,17,18,22],correctli:17,correl:[9,17],correspond:[9,10,11,14,17,21],correspondingli:[8,14],corridor:1,cost:[3,7,9],could:[4,7,8,9,21],council:[],count:7,counterpart:[6,21],coupl:17,cours:[0,2,4,7,8,15],covari:7,cover:[4,8,9,11,16,17,27],cp35:2,cp36:2,cp37:2,cp38:2,cr:[11,14,21,22,23],crash:12,creat:[4,6,8,10,14,15,16,21],creation:[7,21],credenti:24,criteria:7,crss:11,csv:10,cuc16:[],cucci:3,cueva:3,current:[2,7,16,25,26],customfacecount:14,cut:[7,9],cutoff:7,cv2:[],cx:7,cy:7,d:[9,24],dagnumm:24,dai:24,data:[1,4,6,10,13,14,17,18,27],data_author:23,data_cit:23,data_directori:[7,10,14],data_model_crs_epsg:23,data_model_fil:4,data_model_file_nam:23,data_own:[4,23],data_path:4,data_project_path:[4,23],data_refer:23,data_reference_contact:4,data_reference_scientif:4,data_storage_path:24,data_typ:23,dataset:4,datasourc:14,date:24,datetim:24,datum:11,david:3,db:7,dd:[4,23],ddigit:6,deactiv:18,deal:[1,4,7,9,10],deca:17,decemb:[],decid:[7,9,16],decim:[],decis:27,decreas:17,def:[14,24],default_window_s:24,defin:[6,9,11,18],definit:[14,21],degrad:24,degre:[6,17],del:7,delai:18,delet:7,delimit:10,dem:[6,14],dens:[6,14],denseclouddata:14,densiti:9,depart:[7,9],depend:[7,18],depict:[7,21],depth:[6,14,17],depthmapsdata:14,der:24,describ:[9,14],descript:[4,7,14,21],deselect:7,desir:[7,14,18,21],desktop:[],destruct:7,detail:[7,9,14,17,21],detect:[3,14,18,27],detectgcp:14,determin:[3,7,9,10,15],develop:[0,27],devic:[],dgp:[9,23],dh4:23,dialog:[7,10,12,21],diamet:[],dicklyon:[],dickson:23,dict_4x4_50:14,dict_6x6_250:14,dictionari:10,did:4,differ:[6,7,9,10,11,13,14,18,21,22,27],differenti:9,difficult:7,difficulti:10,digit:[3,4,6,7,8,9,15,18,23],digitis:[6,7,9,10,16,23],dilemma:7,dimens:[8,9,14,15,16,17,21],dimension:6,dir:[4,14,23],direct:[6,9],directli:[10,18,21],directori:[2,4,7,10,14,16],directory_structur:24,disabl:[7,14,18],disabledblend:14,disabledinterpol:14,disconnect:18,discov:4,discuss:[7,15,21,27],displai:18,dispos:7,distanc:[4,6,8,9,17,18],distinct:17,distinguish:9,distribut:[2,9],document:[4,14],doe:[2,5,6,7,8,9,17,19,21],doesn:18,doi:[3,23,24],dom:[6,7,15,23],domain:24,dome:18,don:21,done:[1,2,7,9,10,13,21,24],dot:[7,18],doubl:[7,10,18,21],down:[4,6,15,17,21],download:[2,7],dozen:6,draft:14,drag:7,dramat:14,draw:[1,8],drawn:8,drill:[3,17,23],drive:1,drone:9,drop:21,dslr360:18,dslr:[],dt:24,durat:24,dure:[2,7,10,14,17],dust:1,e:[2,4,6,7,8,9,10,11,12,14,15,17,18,21,23,24],each:[6,7,9,10,12,14,17,18,27],earlier:7,earth:3,easi:13,easier:[7,21],easiest:17,easili:[7,9,10,13,14,17,21,24],east:23,edg:[6,9],edit:[2,7,10,18],effect:[3,6,10,17],effici:[9,13,27],effort:10,either:[7,10,11,14,16,17,18,24],ek11:14,element:[9,12],elev:[6,7],elevationdata:14,elin:3,els:[4,7,14,24],elsewher:2,email:1,emb:[],embed:17,emerg:18,emploi:9,empti:14,empty_photogrammetry_processing_set:14,en:[],enabl:[7,14,17,18,21],enable_overwrit:14,enabledinterpol:14,encod:10,encourag:[7,10],end:[7,14,15,16,21],end_dai:24,end_dat:24,english:[],enough:[6,8,9,17,18],enrol:[4,7,8],ensur:[7,14,17,18,27],enter:[1,14],entir:[6,7,9,14,17,21],entireti:17,entranc:[],env:14,environ:[8,10,14,17],epsg:[10,11,14,22,23],equal:[7,10,17],equip:[1,9],equival:[9,16,18],er:24,era:[3,23],errno:14,error:[6,9,10,14,24],especi:[7,10,14,18],essenc:9,essenti:[2,9,14,18],establish:[6,7,10,24],estim:[6,7,14],et:[6,7,17,18,23],etc:[1,6,7,9,18],etpo:24,european:11,ev:18,even:[4,6,7,10,13,14,27],everi:[6,14,27],everyon:27,everyth:[2,14,18],exact:[9,15],exactli:[7,14,17],exampl:[6,7,9,10,11,14,17,21,23],excel:[6,7],except:[2,24],exception:17,exclud:7,exercis:[17,21,27],exhibit:9,exist:[2,7,10,14],exist_ok:24,expand:9,expect:10,expens:[1,9],experi:[17,27],explicit:1,explor:15,export_point_color:14,exportpoint:14,exposur:18,ext:7,extens:[7,9,14,23],extent:13,extern:[1,14],extra:9,extract:7,extrapol:14,extrem:10,ey:9,eyebal:9,f:[3,7,17,18,24],face:[6,7],face_count:14,face_count_custom:14,facil:1,facilit:27,fact:17,factor:[7,17],fail:14,fall:15,fals:14,familiaris:[7,8],far:10,fasten:9,featur:[6,7,9,10,14,15,17,18,21],feedback:[4,7,8],feel:[7,21,27],fernando:3,ferrer:3,few:[6,18],fewer:7,fiduci:[3,9,10],field:[9,10,14,17,24],fieldtrip:15,fig:[6,7,9,10,17,21,24],figur:14,file:[1,2,4,7,10,18,21,23,24],filen:24,filenam:[4,7,14,23,24],filenotfounderror:14,filepath:14,files:24,filesystem:14,fill:[4,15,16,24],filled_len:24,filter:14,filter_mask_tiepoint:14,filterdensecloud:14,finalis:15,find:[4,7,10,18],fine:14,finetun:10,first:[2,6,9,10,14,17,21,27],fit:[7,14],five:[8,9],fix:[10,17,24],fjord:[],flag:10,flash:18,flat:8,flip:17,flush:24,focal:[],focu:[4,8,9,10,18,27],focus:[17,18,27],fold:6,folder:[2,4,7,18],foldio360:[15,17],foldio:18,follow:[0,2,4,8,10,14,15,16,17,18,24,27],font:10,foremost:17,foreseen:9,forest:14,forev:4,forg:[2,24],forland:[4,23],form:[6,9,15],format:[9,10,21,23,24],formula:3,found:[2,4,6,7,14,15,16,23],four:[7,9,17,18],fractur:21,frame:[14,17,18],framebord:[],francisco:3,free:[7,21,27],freedom:10,fresh:14,friendli:14,friesland:23,from:[1,2,3,4,7,9,10,12,13,14,16,17,18,21,23,24,27],from_transport:24,front:[],frontend:17,fruit:4,ftp:24,full:[0,6,9,14,15,17,23],fulli:[4,6,7,8,9,14,18],fullscreen:[],fund:23,funki:10,further:[4,14,17,18],furthermor:[1,7,9,10,15,17,21,27],futur:7,g:[4,7,9,11,14,17,21,23,24],ga:3,gain:[9,13],garc:3,garrido:3,garridojuradomunozsalinasmadridcuevasmarinjimenez14:[],gb:7,gcp:[7,11,14,17,21,23],gcp_cr:14,gcp_tabl:10,gener:[3,8,9,11,14,23,24],generalis:7,genericmap:14,geo:2,geo_b:[],geo_form:[],geo_group:[],geo_memb:[],geo_rock_typ:[],geo_supergroup:[],geoinform:3,geolog:[4,6,7],geologi:[1,7,9,27],geology_ag:23,geology_litholog:23,geology_tag:23,geomat:3,geomodel:15,geomorph:3,geomorpholog:3,geopackag:14,geopanda:2,georefer:17,georeferenc:[17,21],geoscienc:[2,3,6,14,27],geoscientif:27,geotechn:9,get:[2,7,9,15,16,24],gi:[1,21],github:[0,14,27],give:[4,7,9,10,14,21],given:[6,7,9,10,13,15,17,21],glasser:3,global:9,go:[2,7,9,17,18],goal:[7,18],goe:7,goint:[],gone:17,good:[7,17,18],gov:7,govern:7,gp:[11,14,21,23],gpss:9,gradual:7,graduat:1,grai:7,grainsiz:23,gram:[],grant:1,grant_numb:23,graph:0,graphic:7,great:[2,9,10,17],greatest:7,green:10,greet:2,grid:[8,18,21],ground:[3,11,14,17],group:[4,11,21,23],guess:21,gui:[2,7,10,13,21],guid:[2,7],guidanc:3,guidelin:7,gustav:23,ha:[2,7,9,10,11,14,15,16,17,18,21],haakon:23,habbit:7,habit:7,had:6,half:[7,27],halo:[16,18],hambrei:3,hand:[1,2,6,7,8,10,11,14,15,16,21,23],handheld:9,handi:[15,27],handili:7,handsampl:23,handsiz:17,harddisk:7,hat:4,have:[2,4,6,7,8,9,10,14,15,16,17,18,21,24],head:[2,10],hectar:9,heer:23,height:[6,21],heightfield:14,help:[7,18,27],here:[7,9,10,14,18,21],herein:[7,10],hereof:9,high:[4,6,9,14,18],higher:[6,7,14],highest:[7,14,18],highfacecount:14,highli:[2,3,9],highlight:[7,27],histogram:18,hit:[2,7],hold:10,holder:1,home:[8,9],honest:7,hopen:[4,23],horizont:9,host:[1,7,14],hostnam:24,hour:24,how:[4,6,7,10,11,14,15,16,17,24,27],howev:[2,6,7,8,9,10,14,17,18,27],href:23,hsm:7,http:[2,7,14,17,23],human:[6,14,17],humboldt:3,humboldtsuniversity16:[],hundr:[6,9],i:[2,4,6,7,8,9,10,12,14,15,17,18,21,23,24],icon:[7,18],id:[14,15],idea:[7,15],ideal:17,ident:[8,13,14],identici:[],identif:[9,10],identifi:[7,9,10,14,23],ifram:[5,10,17,19],ii:23,ilc:23,illustr:18,imag:[6,8,9,10,11,14,17,27],image_overview:4,imagemark:[],imagesdata:14,img_0001:7,img_0002:7,impact:[9,17],implement:[4,6,7,9,10,14],implemt:14,importantli:[],imposs:6,improv:27,includ:[1,3,4,7,8,9,10,12,14,15,17,21,23,27],incompat:2,increas:[6,7,14,17],increment:[],inde:[7,21],independ:[1,14],index:14,indic:[7,10,14,18,23],individu:[6,12,14],induc:18,infinit:9,info:14,inform:[4,6,7,10],infrar:18,inher:[6,10],init_task:14,init_workspac:14,initi:[7,12,14],input:[7,13,14],insid:[9,18],inspect:14,instal:[1,7,14,24],instanc:[9,10,17],instantli:14,instead:[7,11,15],instruct:7,insuffici:7,integ:[14,23],integr:7,interact:[2,21,27],intercept:6,interest:[6,7,10,21],interestingli:6,interf:2,interfac:[2,7,14,24],interior:9,intern:[3,7,9,14],internaton:3,internatonalaooagproducers19:[],interpol:[9,14],interv:[7,9,24],introduc:[7,17],introduct:9,intuit:10,involv:[6,7],io:14,ip:14,ipad:[],ipykernel_13288:[],ipykernel_20148:[],ipykernel_25236:[],ipykernel_26228:[],ipykernel_28188:[],ipykernel_28320:14,ipykernel_29268:[],ipykernel_31996:[],ipykernel_33872:[],ipykernel_40728:[],ipykernel_7060:[],ipykernel_8816:[],ipynb:14,ir:18,irrelev:14,is_draft:14,is_priv:14,island:[4,23],iso:18,issu:[2,9,10,27],item:[7,23],itemis:[],its:[9,15,17],itself:21,j:3,jag:3,jame:23,janusfjellet:6,jarlsberg:23,javier:3,jim:3,joonsang:3,journal:3,jpg:[4,14],juan:3,jug:16,jupyt:0,jupyterlab:2,jurado:3,just:[6,7,9,13,14],k1:7,k3:7,k:[2,14,18],karl:[4,23],kartverket:24,kb:24,keep:[8,9,10,14,17,18,27],keep_depth:14,kei:[3,6,7,10,17],kept:17,keyboard:[7,13,21],keyword:23,kim:[1,3],kind:16,km:[],know:[17,18],knowledg:7,known:[1,2,6,9,11,21],kong:[4,23],konusdalenwestfault:14,l3:14,lab:[2,7,17,21],label:21,lambda:24,land:[4,9,23],landscap:9,languag:[14,27],larg:[7,9,17,18],larger:17,largest:[7,17],last:[8,14,23],lat:14,later:[7,9,10,14,25,26],latest:[2,14],latitud:[9,10,11],latter:[7,10],launch:2,launcher:14,lead:[7,8],learn:[7,9,17,18,27],least:[4,7,8,9,14,15,17],leav:[7,14],lectur:27,left:[7,8,10,14,17,18,21],legacymap:14,len:[9,14,23],length:[],less:[7,9],lesson:[9,14],let:[2,7],letter:24,level:[9,14],lib:14,librari:9,licens:[1,2],life:17,light:[15,17,18],lightbox:23,lightn:22,like:[2,4,9,14,21,24],lime:[1,20],limit:7,line:[2,6,14,21],link:[10,14,16,17,18],linux:2,linux_x86_64:2,liquid:1,list:[0,4,7,10,13,14],listdir_attr:24,lit:17,litholog:23,live:18,ll:[4,7],load:[9,14,17],load_project_path:14,loader:14,lobsterbak:3,lobsterbake09:[],local:[1,7,10,11,14],locat:[6,10,11,14,15,17,21,24],location_altitud:23,location_east:23,location_island:23,location_land:23,location_loc:23,location_north:23,log:[7,14,18,27],logger:14,longer:[7,9,10,17],longitud:[9,10,11],longyearbyen:24,look:[4,6,7,8,10,14,15,16,21],lose:7,loss:[7,18],low:[3,14,18],lower:[7,18],lowest:[7,9,14,16],lowfacecount:14,luck:8,luckili:[7,11],m2:4,m3:15,m:[2,3,4,7,10,14,23,24],machin:[1,10],maco:2,macosx_10_13_x86_64:2,macro:4,made:[2,7,13],madrid:3,magnitud:9,mai:[1,2,4,7,9,10,14,18,21,27],main:[6,7,14,18,27],major:[2,7,9],make:[1,4,8,9,10,12,14,15,16,17,18,21,24,27],malt:[],manag:[2,7,24],mani:[6,7,9,10,18,20],manner:[9,10,14,27],manual:[8,9,13,14,18],map:[3,9,11,14],mapping_mod:14,mar:3,margin:6,mark:8,marker:[3,14,23,27],marker_detect:[],marker_location_accuraci:14,marker_projection_accuraci:14,markers_circl:14,markup:14,mart:3,martinezcarricondoagueravegacarvajalramirez:[],mask:14,masking_mod:14,maskingmodealpha:14,maskingmodebackground:14,maskingmodefil:14,maskingmodemodel:14,match:[6,7,14,18],materi:16,math:24,mathemat:11,max:[7,24],max_neighbor:14,max_window_s:24,maxblend:14,maxim:7,maximum:14,mb:[7,24],mean:[2,7,9,11,13,17,21],measur:[7,8,9,10,21],mechan:21,media:[1,7],medium:[7,14],mediumfacecount:14,meet:7,member:9,memori:14,mention:10,menu:[2,7,14,18,21],merg:18,mesa:3,mesh:[3,4,6,9,14,15,21],messag:9,metadata:[4,7,9,10,14,15,16,21,27],metashap:[1,4,8,9,11,13,14,16,23,27],metashape_project_nam:7,metashapeprocess:14,meter:14,method:[7,10,17],methodolog:[15,17,18],metr:[4,7,9,11,14,17],metric:[10,17],mf:18,micro:18,middl:8,mild:7,mildfilt:14,min:7,minblend:14,mind:[7,8,9,10,14,20],miner:17,mini:[],minim:[7,9,10,17],minimis:9,minor:[2,7,14],misalign:17,misidentif:9,mistak:18,mkdir:24,mm2:23,mm:[4,9,23],mode:[14,18],model:[3,4,6,8,9,14,16,23],model_filenam:4,modeldata:14,moderatefilt:14,modern:[6,9],modul:[2,11,14,27],modulenotfounderror:[],molli:24,month:2,more:[4,6,9,10,13,17,18,27],mosaic:14,mosaicblend:14,mosociova:[2,14],most:[7,9,10,11,12,13,14,17,18,21],mostli:10,motion:[3,27],mountain:6,mous:[7,10,21],move:[6,9,10,14,17,18,20],movement:18,mozallowfullscreen:[],ms:14,ms_20220207t1303:[],ms_20220826t1159:[],ms_20220907t1504:[],ms_20220907t1510:[],ms_20220907t1521:14,mu:3,much:[7,14,18],mug:4,multipl:[7,10,14,17,18],multipli:17,multispectr:14,must:[6,7,9],mutlipl:[],mwe:10,mxm:14,n:[2,3,14],nake:9,name:[2,4,7,10,14,23,24],nameerror:[],narrow:6,nathorst:23,natur:9,ncc:23,necessari:[7,27],need:[1,2,7,8,10,11,14,17,18,24,27],neighbor:14,neighbour:6,neither:11,network:14,networkprocess:14,never:[7,14],next:[4,7,8],nez:3,nine:7,nofilt:14,non:7,none:[2,24],nontheless:2,nor:[10,11],nordaustlandet:[4,23],normal:[6,17,18],north:23,norwegian:[],notabl:[13,17],note:[3,4,7,8,14,18],notebook:14,notebook_directori:14,noth:[6,9],notic:21,novemb:[],now:[2,4,7,8,9,14,18],np:[],number:[1,4,7,9,10,11,14,16,17,18,21,23,27],numer:15,numpi:2,nutshel:17,ny:23,obj:[4,23],object:[4,6,7,8,9,11,15,16,18],observ:[3,6],observasjonen:24,obtain:[7,9,15],occlus:3,off:[7,9],offer:2,offic:8,offici:7,offset:17,ofr20211039:7,often:[6,9,11,13],og:24,ogata:3,oil:3,ok:[7,10],olav:23,old:21,omit:9,onc:[2,6,7,10,16,18,21,27],one:[7,8,9,10,12,14,15,17,18,21],ones:18,onli:[1,4,6,7,8,9,10,12,14,15,17,21],onlin:[2,10,27],onscreen:21,onto:7,onward:2,open:[1,7,8,10,14,15,18,21],opencv2:[],opencv:[2,10],oper:[2,12,13,21,27],oppos:10,opt:10,optic:3,optim:[9,14,17,18,27],optimis:[1,10,14,18],optimize_w_gcps_onli:14,optimizecamera:14,optin:[],option:[7,10,14,18,21,23],orang:18,orangemonki:18,orcid:23,order:[9,11],org:23,organ:23,orient:[3,11,17],origin:[6,7,8,11,14,17,21],orthomosaicdata:14,orthophotomap:14,orvin:23,oscar:23,other:[1,2,4,6,7,8,9,10,13,14,17,18,20,23,27],otherwis:7,ouch:12,our:[2,4,7,9,17],ourselv:8,out:[4,7,8,15,16,24],outag:12,outcom:14,outcrop:[2,4,6,7,14,15,17,21,23],outer:6,outlin:[7,18],output:[6,7,13,14],output_path:14,over:[2,4,7,10,14,18],overal:[7,9],overexpos:17,overlap:[4,6,7,17],overview:[2,3,4,6,7,10,14],overview_img:7,overwrit:14,overwritten:7,ow:9,own:[1,2,4,8],oz:3,p1:7,p2:7,p:[2,3,14],packag:[7,14,20],packet:24,page:[10,14,15,17,18,25,26,27],page_count:14,pain:21,panda:2,pane:7,panel:[7,10],paper:[8,17],paramet:[2,9,10,11,12,13,17,18],paramiko:24,parent:24,parenthes:14,park:[3,9],part:[1,3,7,8,10,15,17,27],partial:[],particular:[2,27],pass:24,password:[14,24],past:[14,17],patch:7,patcog:3,path:[14,18,23,24],pathlib:[14,24],patricio:3,pattern:3,pc:1,pd:[],pdf:[7,10],peak:[9,18],pebbl:[],pencil:8,peopl:0,per:[7,8,9,10,12,14,17,18,27],perceiv:6,percent:24,percentag:7,perfect:[],perform:7,perhap:7,period:[1,2,23],permiss:1,person1:4,person2:4,person3:[],person4:[],person:2,peter:[3,7,14,23,24],peterbetlem:14,petrel:[1,21],petroleum:11,phone:18,photo:[4,8,9,10,12,14,16,21],photo_path:14,photogrammetr:[3,27],photogrammetri:[1,2,3,7,9,11,14,15,27],photogrammetry_processing_set:14,photographi:15,photoscan:2,photoset:14,photoshoot:[],php:14,physic:[1,18],pick:[4,9,10,23],pictur:18,piec:8,pinpoint:9,pip:2,pirat:4,pix:23,pixel:[4,7,9,14],pixel_s:14,place:[4,6,7,8,9,10,17],plai:[7,14],plane:9,platform:[2,18],pleas:[0,1,2,4,7,8,10,14,16],png:14,point:[2,3,4,6,8,10,11,14,17,23],point_color:14,point_confid:14,point_confidence_max:14,pointclouddata:14,pointer:7,polygon:[6,7],pop:[7,21],popular:[9,10],popup:17,porra:3,port:7,pose:[3,9],posit:[6,7,9,10,11,17,18],possibl:[7,9,16,17,18],post:[17,24],potenti:[],pow:24,power:[1,6,7,12,14],practic:[4,27],pre:[7,11,14],preced:[14,17],precis:[4,9],predefin:7,prefer:[6,7,9,17],prepar:10,preselect:7,present:[1,7,14,15,17],press:[7,18],prevent:[1,2,7,9,14,17,18],previou:[7,17,27],previous:[2,7,10,14],primarili:1,prin:[4,23],princip:10,principl:6,print:[9,10,24],printer:8,prior:[4,9,10,13,15],privat:[14,24],pro:8,probabl:[7,10],problem:7,proc:23,proc_alignment_accuraci:23,proc_camera_st:23,proc_camera_total_error:23,proc_camera_total_rms:23,proc_coverage_area:23,proc_dc_filter_conf_min:23,proc_dem_point_dens:23,proc_dem_resolut:23,proc_dense_cloud_confidence_min:23,proc_dense_cloud_confidence_minimum:23,proc_depth_map_accuraci:23,proc_flying_altitud:23,proc_gcp_crs_epsg:23,proc_gcp_total_rms:23,proc_gcp_typ:23,proc_georeferencing_count:23,proc_georeferencing_cr:23,proc_georeferencing_typ:23,proc_ground_resolut:23,proc_mesh_filter_con_comp:23,proc_refer:23,proc_sc_filter_proj_acc:23,proc_sc_filter_recon_uncert:23,proc_sc_filter_reproj_error:23,proc_softwar:23,proc_software_vers:23,proc_volum:23,proce:[2,7,8,10,13,14,16],procedur:[7,15],process:[1,2,6,8,9,10,13,15,16,17,18,24,27],processing_camera_len:[],processing_camera_model:[],processing_camera_st:4,processing_camera_total_error:4,processing_coverage_area:4,processing_d:[],processing_dem_point_dens:4,processing_dem_resolut:4,processing_flying_altitud:4,processing_georeferencing_cr:4,processing_georeferencing_marker_count:[],processing_georeferencing_marker_typ:[],processing_georeferencing_typ:4,processing_ground_resolut:4,processing_reference_contact:4,processing_report:7,produc:[3,18],product:7,profession:[2,14],program:[14,27],programm:21,progress:1,progressbar:24,project:[4,8,10,11,12,14,15,16,21],project_cr:14,project_directori:[7,10,14],project_path:14,prompt:[10,14,21],proper:[],properli:[7,9,21],properti:[9,21],provic:14,provid:[2,4,6,7,8,9,15,17,21,24],proxim:[9,17],psx:[7,14],pub:7,publ_embargo:23,publ_related_identifi:23,publ_sketchfab_id:23,publ_v3geo_model:23,publish:[14,16],publishdata:14,publishing_date_archiv:[],publishing_date_revis:[],publishing_sketchfab_id:[],publishing_svalbox_img_id:[],publishing_svalbox_post_id:[],purpl:7,purpos:[4,27],put:[6,7,8,10,14],py37:2,py3:2,py:14,pysftp:[],python3:[],python:[13,15,27],pyyaml:2,qualiti:[14,15,17,18],quality_cutoff:14,quantit:11,queri:17,question:16,queue:18,quick:7,quickli:[7,9],quit:9,r:[2,3,14,21,24],radiu:10,rais:2,ram:3,random:9,rang:[10,14,17,18,24],rate:[17,24],rather:[2,6,7,9],raw:[7,17,27],re:[7,8],reach:21,read:[5,10,19],read_config:14,read_yaml:14,readabl:10,reader:6,readi:[7,14,18],real:[7,8,9,11,13,14,15,16,17,21],real_world_posit:[],realiti:9,realli:7,reason:17,recent:14,recognit:[3,8],recommend:[2,6,7,12,14,18],reconstruct:[4,6,9],rectangl:[7,8],red:7,redirect:2,redistribut:2,reduc:[7,9,14],reduct:17,refer:[0,7,10,12,14,17,21],referenc:9,refrain:7,refresh:18,regardless:14,region:[],rekey_byt:24,rekey_packet:24,rel:[4,9,11],relat:[7,9,14,15,17,23,27],releas:[2,7,14],reli:[7,10,14,17],reliabl:3,remain:[7,10,14],remaind:14,rememb:[7,9,21],remot:[3,17,18],remov:[7,10,14,21],renam:[7,10],repeat:14,report:[2,4,8,14,23,27],repres:[6,10,17],reprocess:14,reproduc:[13,27],request:[1,4],requir:[1,4,7,8,9,11,13,14,16,17,21,27],research:1,reserv:1,reset:7,resid:7,resolut:[4,7,14],resourc:16,respect:17,respons:[4,7,15],rest:[],restrict:1,result:[6,7,9,12,13,14,17,18,21],reus:7,reuse_depth:14,review:9,revis:[14,21],revisit:7,reynold:3,rez:3,rgb:[7,14],ridg:9,right:[1,7,9,10,17,18,21],ring:18,rise:[9,10],risk:17,rmse:9,rnx3:24,rock:[9,23],room:1,root:[7,9],rotat:[17,18],round:17,routin:[],row:[9,10],rs12020330:[3,23],rule:[7,9,11],ruler:8,run:[2,7,8,14,27],run_nam:14,runa:7,runtim:14,s:[2,3,4,7,9,15,21],sabin:23,sadli:[7,11,17],safe:[],safeload:14,said:7,salina:3,same:[7,9,10,13,14,15,17,18,21],sampl:[1,2,3,10,11,14,16,18,21,23],sample_ag:[],sample_base_depth:23,sample_bulk_dens:23,sample_descript:[],sample_length:23,sample_litholog:23,sample_top_depth:23,sample_typ:[],sample_volum:23,sample_weight:23,sample_width:23,sampling_contact:[],sampling_d:[],sampling_island:[],sampling_land:[],sampling_latitude_wgs84:[],sampling_loc:[],sampling_longitude_wgs84:[],sandston:23,sara:24,sartel:[2,14],save:[4,10,12,14,18,21],savefil:21,scale:[2,4,9,10,11,14,15,21],scenario:9,scene:6,scienc:27,scientif:[10,13,27],screen:[7,14,18],screenshot:4,script:[2,9,10,13,14,24,27],se:8,search:[14,17],second:[7,9,18,24],section:[2,7,11,14,21],secur:[9,24],see:[2,6,7,9,10,11,15],seek:9,seen:17,seismic:[2,7,14],select:[4,9,10,12,18,21,24],self:14,semest:15,semi:[],send:4,senger:[1,2,3,14],sens:[3,21],separ:[2,4,10,23],sequenc:7,sequenti:12,seri:[6,14],serial:14,server:[7,14],server_ip:14,servic:[14,21],service4dmapp:14,servicemapbox:14,servicemelown:14,servicepicterra:14,servicepointbox:14,servicepointscen:14,servicesketchfab:14,servicesputnik:14,session:[4,7,8,16,17,21],set:[2,4,8,9,10,11,12,13,14,21],setup:[2,7,17,18],sever:[0,7,17,27],sfasd:14,sfm:[1,2,3,7,11,14,15],sftp:24,sftpclient:24,shadow:[17,18],shape:21,shapefil:21,share:27,sharkd:[],sharp:[9,17],shell:6,shift:14,shoot:18,shortcom:9,shot:[7,10,18],should:[1,2,4,7,8,9,10,13,14,15,16,17,18,21],show:[2,7,10,17,18,21,24],showcas:14,shown:[6,7,10,14,17],shutter:18,side:[4,14,17],sidewalk:9,sight:6,signific:10,siltston:23,similar:[6,7,9,11,18,21],simpl:[7,9],simpli:[8,14,21],simplist:9,simultan:[6,7],singl:[6,9,10,17,18,21,24],site:14,size:[7,15,16,21,23],sketchfab:[15,21],skill:27,skip:[1,7,14],skurtveit:3,slb:1,slight:10,slightli:[9,10],small:[2,4,8,9,11,15,18],smaller:17,smallest:[9,17],smart:18,snap:21,so:[1,2,7,9,10,15,16,17,21],softwar:[1,13,14,20,21,27],solut:[18,21],some:[4,6,7,8,9,11,14,15,24],someth:[7,17],sometiem:7,sometim:7,soni:18,sort:[10,24],sound:27,sourc:[7,8,14],source_data:14,space:[11,14,17],spare:7,spars:[4,6,7],spatial:11,spec:14,special:11,specialis:1,specif:[1,7,9,10,11,12,17,27],specifi:[2,7,11,17,21,24],speed:18,sphericalmap:14,spitsbergen:[4,23],split:[4,27],spot:9,spring:27,squar:[7,9,14],src:[],staff:[1,24],stage:[14,25,26],standard:[2,7,14,21],standardis:[4,8,9,10,16,18,27],start:[2,4,7,8,14,15,18],start_dai:24,start_dat:24,startup:14,state:[3,7],statement:8,station_short:24,stationari:7,stdout:24,step:[4,6,8,9,10,12,13,14,18],stick:7,still:[7,8,9],stop:[14,18],storag:[6,7],storage_analysi:[],storage_contact:[],storage_loc:[],store:[7,9,14,24],str:[23,24],straightforward:9,stratifi:9,streamlin:[2,14],strictli:[1,9],string:[4,23],strongli:10,strptime:24,structur:[3,4,7,18,27],stuck:[2,8],student:[1,4,7,24,27],studi:9,stuff:7,sub:[9,18],subcategori:23,subdirectori:7,subdivide_task:14,subdivis:14,submiss:15,submit:[4,7,15],subsequ:[9,10,13,21],succe:17,success:[14,17],successfulli:[14,24],suffici:[6,7,17],suggest:[4,7,9,14,18],suit:[2,10,27],suitabl:[1,4],summari:15,summaris:17,supervisor:1,supplementari:[4,7],suppli:[],support:[5,11,18,19],sure:[4,7,8,9,10,12,14,15,16,17,18,21,24],surfac:[6,14,15],surface_typ:14,surnam:[],surround:6,survei:[7,9,11],svalbard:[4,6,7,8,11],svalbox:[4,7,14,23],svalbox_hsm_id:[],svg:[],sy:24,symbol:[],symmetr:9,symmetri:9,syntax:[2,24],synthet:9,system:[2,10,21],systemat:10,t:[2,14,18,21],tab:[7,14],tabl:[7,17,18],tablet:18,take:[1,4,6,7,9,14,17,18,27],taken:[6,7,9,10,17,18],tall:17,tangent:[],target:[3,4,9,10,17,18,27],task:[4,14],teach:27,technic:9,tell:7,temp:14,temperatur:[17,18],templat:[14,16],template_file_path:14,template_s:14,term:6,termin:[1,2,21],terminu:9,terrain:9,test:18,tetrahedr:7,text:7,textur:[4,6,8,14,17],texture_s:14,than:[2,6,9,13,17],thei:[4,6,7,10],them:[4,7,8,10,21],themselv:9,therebi:17,therefor:[1,2,6,7,9,10,17,21],thi:[2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,23,24,25,26,27],thing:[7,13,17],think:4,third:7,thoma:3,those:[2,7,10,15],though:[7,9,10,11,14,15,21,27],thought:[4,8],thousand:9,three:[6,17,18],through:[0,2,7,10,11,13,14,17,18,21,24],throughout:[2,7,9,17],thu:[9,17],thumb:[7,9],thusfar:[10,21],tie:[7,14],tiepoint_covari:14,tile:[14,21],tile_s:14,tiledmodeldata:14,time:[1,2,9,14,17,18],timeless:9,timetupl:24,tip:[4,8,15,17],titl:[7,9,14],tm_ydai:24,tobedon:[],todo:[],togeth:[6,7,10],token:14,toler:7,too:7,tool:[3,7,8,10,15],top:[6,8,9,14,17,18],topleft:14,topright:14,torel:23,total:[7,9,15,17],touch:[],trace:6,traceback:14,track:[7,9,14],transform:[3,11],transmit:18,transport:24,treat:[8,21],tri:7,trial:[2,14],triangl:[7,9],trick:[4,8,15,17],trigger:17,troubl:9,truli:7,turn:[4,6,17,18],turntabl:18,tutori:[2,4,8,12,14,15,16,17],two:[4,6,7,10,11,17],txt:[4,7],type:[9,10,14,18,21],typic:[18,27],uav:[3,9],ui_control:[],ui_info:[],ui_inspector:[],ui_stop:[],ui_watermark:[],ui_watermark_link:[],uio:23,unabl:24,unalt:14,uncom:[],under:[3,7,16,18,25,26],undergo:[],undergon:7,understand:6,uni:[1,7,9,17,23,24],uniformli:17,uniqu:[2,6,7,10],unis_3051_20180827_spit_sarstangen_sarsoyra1_u:[],unis_project_campaign:23,unis_project_no:23,unit:[7,14,17,21],unitless:17,univers:[3,4,7,8],unlik:7,until:[7,21],unzip:[7,14],up:[1,4,7,8,9,14,18,21],upcom:11,updat:[2,7,12,14,17],upload:[7,14,15,21],upon:9,upsid:[4,17],url:[7,17],us:[0,1,2,6,7,8,9,10,11,13,15,17,18,21,22,23,27],usabl:6,useless:9,user:[1,2,7,14],usernam:24,usernanem:24,usual:[7,9,14,17],utilis:7,utm:[11,14],v1:2,v:23,valid:21,vallei:9,valu:[7,10,14,17,18],variabl:7,varianc:7,variat:3,varighet:24,variou:[2,7,13,17,18,20,21],vector:6,vega:3,veri:[4,7,9,10,14],verifi:[7,9,21],version:[13,23],versu:[7,17],vertec:6,vertext:7,vertic:[9,21],video:6,view:[0,6,7],viewer:14,vii:23,visibl:[7,8,10],visit:7,visual:[],visualis:[7,21],voila:8,volum:[9,23],volumetr:14,volumetric_mask:14,vr:[],vs:[7,17],wa:[6,9,14,24],wai:[4,9,10,17,21],walkthrough:27,want:[2,9,18],warn:[1,14],warrant:[1,9],water:16,wbg:[],we:[2,4,6,7,8,10,14,16,17,18,24,27],weak:4,webbrows:14,webkitallowfullscreen:[],webport:24,wedel:23,weigh:7,weight:[],welcom:1,well:[2,6,7,8,9,10,14,15,17,21,27],went:14,were:7,westobi:[3,6],wet:[],wg:11,wgs1984:14,wgs84:[],what:[9,16,21],whatev:17,when:[1,2,4,7,8,10,13,14,15,17,18,21],whenev:7,where:[2,4,6,7,9,14,18,24],whether:[7,14,21,27],which:[1,2,6,7,9,10,11,14,15,16,17,18,21,24,27],whilst:[10,13,14,15,18],white:[10,18],whl:2,who:[],why:[10,17],width:[],wikipedia:[],wildcard:11,win_amd64:2,window:[1,2,10,12,18,21],wise:10,wish:2,with_camera_track:14,within:[4,6,7,9,10,14,16,17,18,21],without:[1,2,6,8,9,10,15,17,21,23],wobbl:18,won:14,word:[7,13],work:[1,2,7,9,10,14,17],workflow:[7,12,18,21],workspac:[7,10],workstat:4,world:[6,8,9,11,14,17,21],wors:[9,14],worth:10,would:[4,6,7,9,14,16,21],write:[1,2,7,15,24],written:1,wrong:17,wth:7,www:14,x:[2,7,10,24],xxx:7,xxxx:[],y:[2,24],yaml:23,year:24,yet:[6,10,14,15,17],yml:[7,14],yml_path:14,ymlfile:14,you:[1,2,4,5,6,7,8,9,10,16,17,18,19,21,27],your:[1,2,4,5,8,9,14,15,17,18,19,21,27],yourself:[7,10,12],yyyi:[4,23],yyyymmdd:24,z:6,zenodo:0,zfill:24,zoom:18},titles:["Cite Geo-SfM","Seismic lab (Signehamna)","Software","Bibliography","Exercise 1 - learning the ropes of SfM photogrammetry","SfM photogrammetry Quiz","SfM photogrammetry","Metashape Tutorial","Exercise 2 - learning the ropes of GCP and marker detection","Ground control points (GCPs)","GCP tutorial","Geo-referencing","Batch-based processing through Metashape GUI","Automation","Python-based standardised processing","Exercise 4 - Digitising field samples","Exercise 3 - Food for thought","Small object SfM photogrammetry","Foldio360 Tutorial","Hand-sized Sample Quiz","Geomodelling overview","Geomodeling tutorial","Best practices","Metadata templates for archiving","Downloading base station dGNSS data","Leica Infinity","Topodrone PPK","Welcome to Geo-SfM"],titleterms:{"0":26,"1":4,"101":17,"2":[7,8,26],"3":16,"3d":[7,17],"4":15,"999":7,"do":[4,7,9],"final":[],"true":17,A:[7,17],Be:9,In:7,The:[2,8,24,27],about:[4,7],access:[24,27],accuraci:[7,9],acknowledg:1,acquisit:[4,18],activ:2,ad:7,addit:14,agisoft:[2,7,10],align:7,along:7,alter:7,analyz:7,annot:[15,21],anoth:14,apertur:17,app:18,approach:[8,10],arch:17,archiv:23,aruco:10,assign:[4,8],autom:[1,9,10,13,14],backup:7,banana:16,base:[9,12,14,24],batch:12,befor:7,best:22,bibliographi:3,build:7,built:9,bulk:15,calibr:7,camera:[7,18],centr:[10,27],checklist:[4,8],cite:[0,2,14],cloud:7,colour:17,compat:10,compon:18,comput:[9,18],conda:2,condit:1,confid:7,configur:14,connect:18,consist:9,control:[7,9],coordin:[10,11,21],corona:8,correct:10,correctli:14,cours:[1,27],cr:10,creat:[2,7],data:[7,24],deadlin:[4,8,15,16],deliver:4,dens:7,densiti:15,depth:7,design:9,desktop:18,detect:[8,9,10],devic:18,dgnss:24,diagram:17,did:14,digit:[16,17,20,21],digitis:[15,17],distanc:21,document:7,dot:10,double_align:14,down:7,download:24,downscal:14,dslr:18,duplic:7,edg:18,environ:[2,7],error:7,everi:7,exercis:[4,7,8,15,16],experi:9,exposur:17,field:15,file:14,fill:14,filter:7,filter_mod:14,first:7,fix:27,focu:17,folder:14,foldio360:18,follow:[1,7],food:16,forget:4,format:27,from:6,further:[6,7],gcp:[8,9,10],gener:[7,10],geo:[0,9,11,27],geomodel:[20,21],git:2,github:2,goal:[4,8],gp:9,ground:[7,9],gui:12,halo:17,hand:[9,17,19],handsampl:17,hardwar:18,high:7,highest:9,histogram:[],id:10,imag:[4,7,18],improv:7,infin:25,instal:[2,10],interpol:21,interpret:[15,20,21],jupyt:14,keep:7,know:14,lab:[1,14],label:10,learn:[4,8],leav:10,lectur:[6,17],leica:25,lightbox:[1,18,22],list:[],locat:9,lockdown:8,lyr:24,main:[],make:7,malt:17,manual:[7,10],map:7,marker:[8,9,10],match:10,me:[2,14],measur:[15,17],mesh:7,metadata:23,metashap:[2,7,10,12,15,21],miniconda:2,minim:14,mismatch:2,mode:[],model:[7,15,17,20,21],more:7,motion:6,motiv:27,need:9,network:[4,7],object:17,often:7,open:27,optim:7,order:10,other:22,out:14,outcrop:22,overview:20,own:7,packag:[2,24],paramet:[7,14],pc:18,phone:[],photo:[7,17,18],photogrammetri:[4,5,6,8,17],photographi:1,placement:9,point:[7,9,21],polygon:21,polylin:21,ppk:26,practic:22,problem:18,process:[4,7,12,14],program:10,programm:7,progress:[21,25,26],project:7,prompt:2,publish:7,python:[2,9,10,14,24],qualiti:7,question:[4,8],quiz:[5,19],read:[6,7],readabl:9,real:10,realiti:21,reconstruct:7,reduct:7,refer:11,referenc:11,remot:1,remove_photo_location_metadata:14,repeat:7,report:7,reproject:7,requir:[2,10,18,24],ring:17,rock:17,rope:[4,8],ruler:21,s:[8,17],sampl:[7,9,15,17,19],save:7,scale:[16,17],scientif:7,seismic:1,select:7,set:[7,17,18],sfm:[0,4,5,6,8,17,27],shape:9,shoot:[],shot:14,signehamna:1,size:[9,10,17,19],sketchfab:[7,17],small:17,softwar:[2,7,18],standardis:[7,14],station:24,step:7,strang:21,structur:[6,14],student:8,sub:[],suggest:27,support:[4,7,8,17],svalbard:[9,27],system:11,tablet:[],tbd:[],templat:23,term:[1,9],textur:7,than:7,thi:1,think:7,thought:16,through:12,tile:7,time:7,tip:18,tool:21,topic:27,topodron:26,toposett:26,tripod:17,turntabl:17,tutori:[7,10,18,21,26],uncertainti:7,uniqu:9,univers:27,us:[4,14],usg:7,v3geo:7,valu:21,verif:17,version:[2,7,14],versu:21,video:26,volum:15,wai:[7,24],want:7,warn:[],we:9,welcom:27,what:[4,7],when:9,without:7,work:[21,25,26],workflow:[4,8],world:10,yaml:14,you:14,your:7}})
\ No newline at end of file
+Search.setIndex({docnames:["content/lessons/about/cite","content/lessons/about/seismic_lab","content/lessons/about/software","content/lessons/about/zbiblio","content/lessons/l1/exercise1","content/lessons/l1/quiz","content/lessons/l1/sfm_photogrammetry","content/lessons/l1/tutorial","content/lessons/l2/exercise2","content/lessons/l2/gcps","content/lessons/l2/markers","content/lessons/l2/overview","content/lessons/l3/Batch","content/lessons/l3/overview","content/lessons/l3/python","content/lessons/l4/hss_field_exercise","content/lessons/l4/hss_lab_exercise","content/lessons/l4/hss_overview","content/lessons/l4/hss_tutorial","content/lessons/l4/quiz","content/lessons/l5/geomodel_overview","content/lessons/l5/geomodel_tutorial","content/lessons/suppl/best_practices","content/lessons/suppl/metadata_lists","content/lessons/suppl_dgnss/dgnss_data_downloading","content/lessons/suppl_dgnss/leica_infinity","content/lessons/suppl_dgnss/topodrone_ppk","landing-page"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":4,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.intersphinx":1,"sphinxcontrib.bibtex":7,sphinx:56},filenames:["content\\lessons\\about\\cite.md","content\\lessons\\about\\seismic_lab.md","content\\lessons\\about\\software.md","content\\lessons\\about\\zbiblio.md","content\\lessons\\l1\\exercise1.md","content\\lessons\\l1\\quiz.md","content\\lessons\\l1\\sfm_photogrammetry.md","content\\lessons\\l1\\tutorial.md","content\\lessons\\l2\\exercise2.md","content\\lessons\\l2\\gcps.md","content\\lessons\\l2\\markers.md","content\\lessons\\l2\\overview.md","content\\lessons\\l3\\Batch.md","content\\lessons\\l3\\overview.md","content\\lessons\\l3\\python.md","content\\lessons\\l4\\hss_field_exercise.md","content\\lessons\\l4\\hss_lab_exercise.md","content\\lessons\\l4\\hss_overview.md","content\\lessons\\l4\\hss_tutorial.md","content\\lessons\\l4\\quiz.md","content\\lessons\\l5\\geomodel_overview.md","content\\lessons\\l5\\geomodel_tutorial.md","content\\lessons\\suppl\\best_practices.md","content\\lessons\\suppl\\metadata_lists.md","content\\lessons\\suppl_dgnss\\dgnss_data_downloading.md","content\\lessons\\suppl_dgnss\\leica_infinity.md","content\\lessons\\suppl_dgnss\\topodrone_ppk.md","landing-page.md"],objects:{},objnames:{},objtypes:{},terms:{"0":[2,4,7,8,9,14,23,24],"00":14,"0000":23,"0002":23,"00345":4,"005":3,"008":[],"01":[3,14],"010":14,"0138":4,"015":3,"02":[],"021":3,"03":[],"0374":23,"04":23,"047":23,"05":3,"060":[],"061":[],"067":[],"068":[],"07":14,"08":3,"09":[14,23],"1":[2,3,6,7,9,10,13,14,15,17,23,24],"10":[3,4,7,23],"100":[7,9,14,17,24],"1000":7,"100000":14,"1000x1000":7,"100media":[7,14],"100x100":7,"1016":3,"101media":7,"1024":24,"1039":7,"11":14,"110":14,"116":[],"11797":[],"12":[3,4,14],"123456asba":23,"126707":23,"128":14,"13":[],"137":23,"14":23,"15":[10,14,15,17],"152":10,"16":9,"16384":7,"164":10,"169":10,"17":7,"179":3,"18":23,"183":10,"184":10,"19":7,"199media":7,"19th":24,"1sec":24,"1tb":24,"1x":18,"1x1":9,"2":[2,3,6,9,10,11,14,16,23,24],"20":14,"200":[7,18],"2002":10,"2006":[],"2009":3,"2012":3,"2014":3,"2016":3,"2018":3,"2019":[3,4,23],"202":10,"2020":[2,3,14,23],"2021":7,"2022":[4,14,24],"20220419":24,"20x20":14,"21":14,"2172":10,"22":24,"221":10,"222":[7,27],"224":10,"2280":3,"2292":3,"23":9,"24":[17,18,24],"24hour":24,"25":[],"255":7,"258":[],"259":[],"26":10,"260":[],"261":[],"262":[],"267":[],"27":[],"28":10,"2843964419":[],"29":[],"2d":[6,11,23],"3":[2,3,4,6,7,9,10,14,17,18,23,24],"30":18,"300":3,"31":[],"314":3,"32":17,"323":[],"32633":[11,14,23],"33":[14,17],"330":3,"333":[],"335":[],"336":[],"337":[],"33763246":10,"33836842":10,"3390":[3,23],"3390649":10,"33907352":10,"33962431":10,"33972477":10,"33n":[11,14],"34":17,"34003023":10,"34011196":10,"3598":10,"36":[17,18],"360":18,"366":24,"3d":[6,11,14,15,18,23],"4":[3,6,8,10,11,14,18,21,23,24],"40":[21,24],"4000":14,"40400":[11,14,23],"4096":[7,14],"41":[],"4326":[10,11,14],"439":[],"45":24,"450":[],"46":14,"47":[3,14],"48":[14,18,23],"488":[],"49":14,"5":[3,4,7,9,10,14,15,18],"50":[7,14,18,23],"500":7,"50x50":9,"526":4,"527":14,"53":23,"532":[],"534":[],"535":[],"54":23,"540":[],"5401":10,"544":[],"546":[],"547":[],"548":[],"549":[],"550":[],"551":[],"553":14,"554":14,"555":14,"556":14,"557":14,"56":[],"5600":18,"57":[],"5840":7,"588810211":[],"59":[],"5x5":[],"6":[3,7,9,10,23],"60":24,"600":[],"6017":23,"624":23,"6300":23,"639":[],"643":23,"656":[],"6672":10,"6924":10,"7":[2,3,7,9,10,14,23],"70":[],"704":[],"71":[],"72":[3,14],"73":14,"74":14,"743":14,"75":14,"7514":10,"756":[],"757":[],"76":14,"7791":10,"78":10,"8":[3,4,10,14,17,18],"80":4,"8192":14,"822519927":14,"82920799":10,"82944846":10,"82992376":10,"83061642":10,"83085931":10,"83092679":10,"83094077":10,"83193045":10,"834377757":[],"84":11,"856":[],"858":[],"860":[],"861":[],"9":[],"90":[17,24],"9001":[10,11,22],"903":[],"908":[],"910":[],"925c0f05104b491f818925839fb5133b":23,"932":4,"9415":23,"949":14,"950":14,"96":23,"98":23,"99":14,"999":7,"\u00e5ret":24,"\u00e5rstall":24,"\u00e9":3,"\u00ed":3,"\u00f1":3,"\u00fc":3,"andr\u00e9":23,"b\u00fcnsow":23,"barents\u00f8ya":[4,23],"bj\u00f8rn\u00f8ya":[4,23],"break":14,"case":[2,7,9,14,21,27],"default":[7,14],"do":[2,6,10,14,17,18,21],"edge\u00f8ya":[4,23],"export":[4,7,8,10,14,21],"final":[2,7,9,10,15,17],"float":24,"function":[10,14],"import":[4,7,8,9,10,14,17,18,24],"int":23,"km\u00e2\u00b2":23,"kvit\u00f8ya":[4,23],"long":[2,4,7,8,13,14,18,21],"m\u00e2\u00b2":23,"new":[8,10,14,21],"nordenski\u00f6ld":23,"null":14,"p\u00e5":24,"public":[0,7],"return":[21,24],"s\u00f8rkapp":23,"short":[6,17],"switch":7,"throw":16,"tidsoppl\u00f8sningen":24,"true":[14,24],"try":[7,9,14,18,24,27],"tusen\u00f8yan":[4,23],"while":[2,7,8,9,10,13,14,17,18,21],A:[2,3,8,9,10,11,14,15,18],And:[2,9],As:[4,6,7,8,9,10,14,16,17,21],At:[4,14,24],Be:[10,15],By:[17,18],FOR:3,For:[7,9,10,11,14,17,21,24],IN:3,If:[2,5,7,9,14,18,19,21],In:[2,8,9,10,13,14,17,18,21,24],Is:[7,14],It:[1,2,4,6,7,9,10,14,18,21],No:[1,7,9,10,14,27],Not:7,On:[7,9],One:[6,7,8,10,21],Or:21,That:[2,7,9,21],The:[0,1,4,6,7,9,10,12,14,15,17,18,21,23],Then:[7,8,9,10,18],There:[7,13,18],These:[7,9,10,14,24,27],To:[0,2,7,10,18],With:[2,7,9],__init__:[],_mask:14,_processing_report:7,a3:9,a4:8,abc2:[],abi3:2,abl:[4,7,8,9],about:[9,17],abov:[7,10,14,18,27],absolut:[4,9,14,17],accept:10,access:[1,2,8,10,14,17,21],accident:7,accompani:[4,8],accord:14,accordingli:14,account:[18,27],accur:[3,7,9,17,21],accuraci:[3,10,14],achiev:[9,11,21],acknowledg:[2,14],acq:[],acq_camera_len:23,acq_camera_model:23,acq_dat:23,acq_gcp_numb:23,acq_gcp_spac:23,acq_georeferenc:23,acq_refer:23,acquir:[4,7,17,18,24],acquisit:[7,9,17,27],acquisition_camera_len:4,acquisition_camera_model:4,acquisition_d:4,acquisition_marker_typ:4,acquisition_refer:4,acquist:[],across:[10,17],action:7,activ:[10,14,21],actual:[7,10],ad:[10,14,16,21],adapt:[7,16,18],adaptive_fit:14,adaptiveorthophotomap:14,add:[7,10,14,21],add_photo:[],addgcp:14,addit:[2,6,7,8,9,10,17,18,21,24,27],addphoto:14,address:[9,14,27],adept:[],adequ:7,adjust:[14,17,18],adolf:23,advanc:[7,27],advis:10,aerial:3,af:18,affect:17,affili:23,affiliation1:[],affiliation2:[],affiliation3:[],after:[4,6,7,8,10,12,14,15,18],ag222:4,ag:[3,7],again:[7,14],aggress:14,aggressivefilt:14,agisoft:[1,4,9,14,16,23,27],ahead:7,ahem:7,aid:21,aim:[7,9,17,27],ain:14,al:[6,17,18,23],albeit:[9,10],albert:23,alfonso:3,algorithm:[6,8],alig:14,align:[11,14,17],alignphoto:14,all:[2,4,6,7,8,9,10,12,14,15,16,17,18,21,24,27],alloc:7,allow:[6,7,9,10,12,13,14,17,18,20,21],alon:6,along:[6,9,18,21],alongsid:[7,27],alpha:18,alreadi:2,also:[1,2,4,6,7,9,10,14,15,17,21,23,27],altern:[7,14,24],although:7,altimetri:9,altitud:[9,10,23],alwai:[2,7,8,9,10,11,12,13,17,18,21],amaz:6,amongst:27,amount:[6,9],amp:[],an:[2,4,6,7,8,9,10,13,14,16,17,18,21,23,24,27],anaconda:[2,14],analys:7,analyz:14,analyzephoto:14,angl:[4,6,22],ani:[1,2,6,7,8,14,15,16,17],anim:17,anna:14,annot:20,anoth:12,answer:4,anyth:7,ap:14,apertur:[],api:2,app:[],appdata:14,appear:[9,10,18],appli:[3,9,15,17],applic:[1,2,3,4,9],approach:[7,27],appropri:10,approx:7,april:24,ar:[1,2,4,6,7,8,9,10,11,13,14,17,18,20,21,24],arbitrari:14,arcex:[2,14],arcgi:1,archiv:[3,4,7,10,27],arctic:[1,7,9,27],area:[7,9,15,17],aris:[4,7],around:[6,9,10,16,17,18],arrow:18,artefact:15,articl:10,artifact:4,artifici:9,aruco:[8,9,14,23,27],aruco_dict:14,asda:14,asdasfasd:14,asdasx:[],ask:[7,17,24],aspect:7,assess:[3,9],assign:[7,11],associ:[3,6,9],assum:[7,14],assur:[],attempt:7,attr:24,attribut:21,attributeerror:[],augment:9,author:0,auto:18,autom:[2,7,8,12,15,16,17,18,27],automat:[3,6,7,8,9,10,14,17,18,23],automated_agisoft_document:14,automated_metashap:[2,14],automated_metashape_notebook:14,automatedprocess:14,automis:[9,10],autoplai:[],autostart:[],avail:[0,2,7,9,10,14,24],averag:4,averageblend:14,avoid:18,awai:[9,13],awar:10,b2cb2ad336dd402eb3dc4222bb03d4bd:17,b:9,bachelor:27,back:[1,7,15,25,26],backbon:27,background:[10,14,17],bad:[7,14],balanc:[17,18],bar:[4,7,14,18,24],bar_len:24,barcod:9,bare:2,base:[2,3,6,7,10,11,16],basic:[2,4,7,9,27],batch_gui:12,bbo:[],becaus:7,becom:[6,7],been:[6,7,10,15,16,17,18,21],befor:[4,10],begin:7,being:[9,10,13],believ:21,below:[2,4,6,7,10,14,15,17,24],beneath:18,benefici:7,benefit:[7,27],best:[4,7,9,24],betlem:[2,3,7,14,17,18,23,24],better:[7,15,18],between:[2,4,6,7,8,9,11,14,15,17,18,21],bf3b54faa2554771a6c49c30638544fb:[],big:[1,7,8,18],binari:[8,9,10],birchal:[2,3,14],bit:[7,10],black:10,blank:10,bleach:17,blender:[1,20],blending_mod:14,blob:7,blue:7,bluetooth:18,blur:[17,18],bone:2,book:0,border:10,borehole_identifi:23,borehole_nam:23,both:[2,8,9,10,18,21],bottom:18,bottomleft:14,bottomright:14,boulder:[],box:[15,18],brand:[],brasington:3,bright:[17,18],brighter:17,brows:[7,10,14],browser:[5,19],bug:27,build:14,builddem:14,builddensecloud:14,builddepthmap:14,buildmesh:14,buildmodel:14,buildtextur:14,buildtiledmodel:14,built:[15,17,23],buldmodel:14,button:[10,14,18,21],c:[2,9,10,14,24],ca:4,calc:[],calcul:[6,7,14,15,21],calibr:[],call:[6,14],callback:24,camera:[4,6,9,11,14,17,23],cameramap:14,campaign:[],can:[2,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,21,24],canva:9,capabl:21,captur:[6,17,18],card:17,care:[9,15],carrascosa:3,carricondo:3,carvaj:3,categori:23,caution:14,cbucklei:[],cd:2,ceil:24,cell:14,center:[10,18],centimetr:[15,17],centr:[4,7,8,9,14,17],central:9,certain:12,certainli:9,cfg:14,cfg_0001:7,cfg_0002:7,chain:7,chang:[2,7,10,14,17,18,21,23,27],channel:2,chapter:9,characteris:[3,7],chdir:24,check:[7,10,17,18,24,25,26],checkpoint:7,choos:[4,10],chose:[7,10],chosen:[7,18],chunk:[7,10,12,14],circl:[10,17],circumst:7,classifygroundpoint:14,clean:1,clear:18,cli:2,click:[7,10,14,17,18,21],close:[9,14,15,21],closer:7,cloud:[1,4,6,11,14,21],clound:11,cm2:23,cm3:[15,23],cm:[9,14,23],coarsen:14,code:[7,11,14,15],coffe:1,cohen:24,coincid:17,collect:[9,15],collector:4,colon:14,color:[7,14,18],colour:[6,7,10],column:10,com:[14,17],combin:[6,7,9,11,21],come:[7,8,9,17,20,27],comma:10,command:[2,7,13],comment:[14,23],common:[6,7,10,11,24],commonli:9,compar:[7,9,14,17,21],compat:[7,14,18],compens:17,compet:27,compil:0,complet:[4,7,8,10,14,15,16,18],compon:[6,7,11],compos:11,compress:7,compris:17,comput:[1,2,6,7,8,12,14,17],concept:[8,27],concis:6,conclus:9,conda:[14,24],conduct:[1,7,9,27],confid:[6,9,14,17],confidenti:1,config:[7,10,14],config_fil:14,configur:[7,10,17,23],conform:8,conjunct:17,connect:[6,7,24,27],consid:[4,7,9,17],consist:[10,14,17,27],constrain:[7,21],construct:[6,25,26],contact:[7,24],contain:[6,11,17],content:[1,7,14],continu:14,contour:9,contribut:[17,21],contributor:0,control:[3,11,14,15,17,18],convers:[3,15],convert_start_end_dates_to_year_day_of:24,coordin:[3,6,8,9,14,15],copi:[1,4,7,14,17],core:[3,17,23],corner:[7,8,9,14,18],correct:[1,7,15,17,18,22],correctli:17,correl:[9,17],correspond:[9,10,11,14,17,21],correspondingli:[8,14],corridor:1,cost:[3,7,9],could:[4,7,8,9,21],council:[],count:7,counterpart:[6,21],coupl:17,cours:[0,2,4,7,8,15],covari:7,cover:[4,8,9,11,16,17,27],cp35:2,cp36:2,cp37:2,cp38:2,cr:[11,14,21,22,23],crash:12,creat:[4,6,8,10,14,15,16,21],creation:[7,21],credenti:24,criteria:7,crss:11,csv:10,cuc16:[],cucci:3,cueva:3,current:[2,7,16,25,26],customfacecount:14,cut:[7,9],cutoff:7,cv2:[],cx:7,cy:7,d:[9,24],dagnumm:24,dai:24,data:[1,4,6,10,13,14,17,18,27],data_author:23,data_cit:23,data_directori:[7,10,14],data_model_crs_epsg:23,data_model_fil:4,data_model_file_nam:23,data_own:[4,23],data_path:4,data_project_path:[4,23],data_refer:23,data_reference_contact:4,data_reference_scientif:4,data_storage_path:24,data_typ:23,dataset:4,datasourc:14,date:24,datetim:24,datum:11,david:3,db:7,dd:[4,23],ddigit:6,deactiv:18,deal:[1,4,7,9,10],deca:17,decemb:[],decid:[7,9,16],decim:[],decis:27,decreas:17,def:[14,24],default_window_s:24,defin:[6,9,11,18],definit:[14,21],degrad:24,degre:[6,17],del:7,delai:18,delet:7,delimit:10,dem:[6,14],dens:[6,14],denseclouddata:14,densiti:9,depart:[7,9],depend:[7,18],depict:[7,21],depth:[6,14,17],depthmapsdata:14,der:24,describ:[9,14],descript:[4,7,14,21],deselect:7,desir:[7,14,18,21],desktop:[],destruct:7,detail:[7,9,14,17,21],detect:[3,14,18,27],detectgcp:14,determin:[3,7,9,10,15],develop:[0,27],devic:[],dgp:[9,23],dh4:23,dialog:[7,10,12,21],diamet:[],dicklyon:[],dickson:23,dict_4x4_50:14,dict_6x6_250:14,dictionari:10,did:4,differ:[6,7,9,10,11,13,14,18,21,22,27],differenti:9,difficult:7,difficulti:10,digit:[3,4,6,7,8,9,15,18,23],digitis:[6,7,9,10,16,23],dilemma:7,dimens:[8,9,14,15,16,17,21],dimension:6,dir:[4,14,23],direct:[6,9],directli:[10,18,21],directori:[2,4,7,10,14,16],directory_structur:24,disabl:[7,14,18],disabledblend:14,disabledinterpol:14,disconnect:18,discov:4,discuss:[7,15,21,27],displai:18,dispos:7,distanc:[4,6,8,9,17,18],distinct:17,distinguish:9,distribut:[2,9],document:[4,14],doe:[2,5,6,7,8,9,17,19,21],doesn:18,doi:[3,23,24],dom:[6,7,15,23],domain:24,dome:18,don:21,done:[1,2,7,9,10,13,21,24],dot:[7,18],doubl:[7,10,18,21],down:[4,6,15,17,21],download:[2,7],dozen:6,draft:14,drag:7,dramat:14,draw:[1,8],drawn:8,drill:[3,17,23],drive:1,drone:9,drop:21,dslr360:18,dslr:[],dt:24,durat:24,dure:[2,7,10,14,17],dust:1,e:[2,4,6,7,8,9,10,11,12,14,15,17,18,21,23,24],each:[6,7,9,10,12,14,17,18,27],earlier:7,earth:3,easi:13,easier:[7,21],easiest:17,easili:[7,9,10,13,14,17,21,24],east:23,edg:[6,9],edit:[2,7,10,18],effect:[3,6,10,17],effici:[9,13,27],effort:10,either:[7,10,11,14,16,17,18,24],ek11:14,element:[9,12],elev:[6,7],elevationdata:14,elin:3,els:[4,7,14,24],elsewher:2,email:1,emb:[],embed:17,emerg:18,emploi:9,empti:14,empty_photogrammetry_processing_set:14,en:[],enabl:[7,14,17,18,21],enable_overwrit:14,enabledinterpol:14,encod:10,encourag:[7,10],end:[7,14,15,16,21],end_dai:24,end_dat:24,english:[],enough:[6,8,9,17,18],enrol:[4,7,8],ensur:[7,14,17,18,27],enter:[1,14],entir:[6,7,9,14,17,21],entireti:17,entranc:[],env:14,environ:[8,10,14,17],epsg:[10,11,14,22,23],equal:[7,10,17],equip:[1,9],equival:[9,16,18],er:24,era:[3,23],errno:14,error:[6,9,10,14,24],especi:[10,14,18],essenc:9,essenti:[2,9,14,18],establish:[6,7,10,24],estim:[6,7,14],et:[6,7,17,18,23],etc:[1,6,7,9,18],etpo:24,european:11,ev:18,even:[4,6,7,10,13,14,27],everi:[6,14,27],everyon:27,everyth:[2,14,18],exact:[9,15],exactli:[7,14,17],exampl:[6,7,9,10,11,14,17,21,23],exce:7,excel:[6,7],except:[2,24],exception:17,exclud:7,exercis:[17,21,27],exhibit:9,exist:[2,7,10,14],exist_ok:24,expand:9,expect:10,expens:[1,9],experi:[17,27],explicit:1,explor:15,export_point_color:14,exportpoint:14,exposur:18,ext:7,extens:[7,9,14,23],extent:13,extern:[1,14],extra:9,extract:7,extrapol:14,extrem:10,ey:9,eyebal:9,f0001:7,f0002:7,f0003:7,f9999:7,f:[3,7,17,18,24],face:[6,7],face_count:14,face_count_custom:14,facil:1,facilit:27,fact:17,factor:[7,17],fail:14,fall:15,fals:14,familiaris:[7,8],far:10,fasten:9,featur:[6,7,9,10,14,15,17,18,21],feedback:[4,7,8],feel:[7,21,27],fernando:3,ferrer:3,few:[6,18],fewer:7,fiduci:[3,9,10],field:[9,10,14,17,24],fieldtrip:15,fig:[6,7,9,10,17,21,24],figur:14,file:[1,2,4,7,10,18,21,23,24],filen:24,filenam:[4,7,14,23,24],filenotfounderror:14,filepath:14,files:24,filesystem:14,fill:[4,15,16,24],filled_len:24,filter:14,filter_mask_tiepoint:14,filterdensecloud:14,finalis:15,find:[4,7,10,18],fine:14,finetun:10,first:[2,6,9,10,14,17,21,27],fit:[7,14],five:[8,9],fix:[10,17,24],fjord:[],flag:10,flash:18,flat:8,flight:7,flip:17,flush:24,focal:[],focu:[4,8,9,10,18,27],focus:[17,18,27],fold:6,folder:[2,4,7,18],foldio360:[15,17],foldio:18,follow:[0,2,4,8,10,14,15,16,17,18,24,27],font:10,foremost:17,foreseen:9,forest:14,forev:4,forg:[2,24],forland:[4,23],form:[6,9,15],format:[9,10,21,23,24],formula:3,found:[2,4,6,7,14,15,16,23],four:[7,9,17,18],fractur:21,frame:[14,17,18],framebord:[],francisco:3,free:[7,21,27],freedom:10,fresh:14,friendli:14,friesland:23,from:[1,2,3,4,7,9,10,12,13,14,16,17,18,21,23,24,27],from_transport:24,front:[],frontend:17,fruit:4,ftp:24,full:[0,6,9,14,15,17,23],fulli:[4,6,7,8,9,14,18],fullscreen:[],fund:23,funki:10,further:[4,14,17,18],furthermor:[1,7,9,10,15,17,21,27],futur:7,g:[4,7,9,11,14,17,21,23,24],ga:3,gain:[9,13],garc:3,garrido:3,garridojuradomunozsalinasmadridcuevasmarinjimenez14:[],gb:7,gcp:[7,11,14,17,21,23],gcp_cr:14,gcp_tabl:10,gener:[3,8,9,11,14,23,24],generalis:7,genericmap:14,geo:2,geo_b:[],geo_form:[],geo_group:[],geo_memb:[],geo_rock_typ:[],geo_supergroup:[],geoinform:3,geolog:[4,6,7],geologi:[1,7,9,27],geology_ag:23,geology_litholog:23,geology_tag:23,geomat:3,geomodel:15,geomorph:3,geomorpholog:3,geopackag:14,geopanda:2,georefer:17,georeferenc:[17,21],geoscienc:[2,3,6,14,27],geoscientif:27,geotechn:9,get:[2,7,9,15,16,24],gi:[1,21],github:[0,14,27],give:[4,7,9,10,14,21],given:[6,7,9,10,13,15,17,21],glasser:3,global:9,gnss:7,go:[2,7,9,17,18],goal:[7,18],goe:7,goint:[],gone:17,good:[7,17,18],gov:7,govern:7,gp:[11,14,21,23],gpss:9,gradual:7,graduat:1,grai:7,grainsiz:23,gram:[],grant:1,grant_numb:23,graph:0,graphic:7,great:[2,9,10,17],greatest:7,green:10,greet:2,grid:[8,18,21],ground:[3,11,14,17],group:[4,11,21,23],guess:21,gui:[2,7,10,13,21],guid:[2,7],guidanc:3,guidelin:7,gustav:23,ha:[2,7,9,10,11,14,15,16,17,18,21],haakon:23,habbit:[],habit:7,had:6,half:[7,27],halo:[16,18],hambrei:3,hand:[1,2,6,7,8,10,11,14,15,16,21,23],handheld:[7,9],handi:[15,27],handili:7,handsampl:23,handsiz:17,harddisk:7,hat:4,have:[2,4,6,7,8,9,10,14,15,16,17,18,21,24],head:[2,10],hectar:9,heer:23,height:[6,21],heightfield:14,help:[7,18,27],here:[7,9,10,14,18,21],herein:[7,10],hereof:9,high:[4,6,9,14,18],higher:[6,7,14],highest:[7,14,18],highfacecount:14,highli:[2,3,9],highlight:[7,27],histogram:18,hit:[2,7],hold:10,holder:1,home:[8,9],honest:7,hopen:[4,23],horizont:9,host:[1,7,14],hostnam:24,hour:24,how:[4,6,7,10,11,14,15,16,17,24,27],howev:[2,6,7,8,9,10,14,17,18,27],href:23,hsm:7,http:[2,7,14,17,23],human:[6,14,17],humboldt:3,humboldtsuniversity16:[],hundr:[6,9],i:[2,4,6,7,8,9,10,12,14,15,17,18,21,23,24],icon:[7,18],id:[14,15],idea:[7,15],ideal:17,ident:[7,8,13,14],identici:[],identif:[9,10],identifi:[7,9,10,14,23],ifram:[5,10,17,19],ii:23,ilc:23,illustr:18,imag:[6,7,8,9,10,11,14,17,27],image_overview:4,imagemark:[],imagesdata:14,img_0001:7,img_0002:7,impact:[9,17],implement:[4,6,7,9,10,14],implemt:14,importantli:[],imposs:6,improv:27,includ:[1,3,4,7,8,9,10,12,14,15,17,21,23,27],incompat:2,increas:[6,7,14,17],increment:[],inde:[7,21],independ:[1,14],index:14,indic:[7,10,14,18,23],individu:[6,12,14],induc:18,infinit:9,info:14,inform:[4,6,7,10],infrar:18,inher:[6,10],init_task:14,init_workspac:14,initi:[7,12,14],input:[7,13,14],insid:[9,18],inspect:14,instal:[1,7,14,24],instanc:[7,9,10,17],instantli:14,instead:[7,11,15],instruct:7,insuffici:7,integ:[14,23],integr:7,interact:[2,21,27],intercept:6,interest:[6,7,10,21],interestingli:6,interf:2,interfac:[2,7,14,24],interior:9,intern:[3,7,9,14],internaton:3,internatonalaooagproducers19:[],interpol:[9,14],interv:[7,9,24],introduc:[7,17],introduct:9,intuit:10,involv:[6,7],io:14,ip:14,ipad:[],ipykernel_13288:[],ipykernel_20148:[],ipykernel_25236:[],ipykernel_26228:[],ipykernel_28188:[],ipykernel_28320:14,ipykernel_29268:[],ipykernel_31996:[],ipykernel_33872:[],ipykernel_40728:[],ipykernel_7060:[],ipykernel_8816:[],ipynb:14,ir:18,irrelev:14,is_draft:14,is_priv:14,island:[4,23],iso:18,issu:[2,9,10,27],item:[7,23],itemis:[],its:[9,15,17],itself:21,j:3,jag:3,jame:23,janusfjellet:6,jarlsberg:23,javier:3,jim:3,joonsang:3,journal:3,jpg:[4,14],juan:3,jug:16,jupyt:0,jupyterlab:2,jurado:3,just:[6,7,9,13,14],k1:7,k3:7,k:[2,14,18],karl:[4,23],kartverket:24,kb:24,keep:[8,9,10,14,17,18,27],keep_depth:14,kei:[3,6,7,10,17],kept:17,keyboard:[7,13,21],keyword:23,kim:[1,3],kind:16,km:[],know:[17,18],knowledg:7,known:[1,2,6,9,11,21],kong:[4,23],konusdalenwestfault:14,l3:14,lab:[2,7,17,21],label:21,lambda:24,land:[4,9,23],landscap:9,languag:[14,27],larg:[7,9,17,18],larger:17,largest:[7,17],last:[7,8,14,23],lat:14,later:[7,9,10,14,25,26],latest:[2,14],latitud:[9,10,11],latter:[7,10],launch:2,launcher:14,lead:[7,8],learn:[7,9,17,18,27],least:[4,7,8,9,14,15,17],leav:[7,14],lectur:27,left:[7,8,10,14,17,18,21],legacymap:14,len:[9,14,23],length:[],less:[7,9],lesson:[9,14],let:[2,7],letter:24,level:[9,14],lib:14,librari:9,licens:[1,2],life:17,light:[15,17,18],lightbox:23,lightn:22,like:[2,4,9,14,21,24],lime:[1,20],limit:7,line:[2,6,14,21],link:[10,14,16,17,18],linux:2,linux_x86_64:2,liquid:1,list:[0,4,7,10,13,14],listdir_attr:24,lit:17,litholog:23,live:18,ll:[4,7],load:[9,14,17],load_project_path:14,loader:14,lobsterbak:3,lobsterbake09:[],local:[1,7,10,11,14],locat:[6,10,11,14,15,17,21,24],location_altitud:23,location_east:23,location_island:23,location_land:23,location_loc:23,location_north:23,log:[7,14,18,27],logger:14,longer:[7,9,10,17],longitud:[9,10,11],longyearbyen:24,look:[4,6,7,8,10,14,15,16,21],lose:7,loss:[7,18],low:[3,14,18],lower:[7,18],lowest:[7,9,14,16],lowfacecount:14,luck:8,luckili:[7,11],m2:4,m3:15,m:[2,3,4,7,10,14,23,24],machin:[1,10],maco:2,macosx_10_13_x86_64:2,macro:4,made:[2,7,13],madrid:3,magnitud:9,mai:[1,2,4,7,9,10,14,18,21,27],main:[6,7,14,18,27],major:[2,7,9],make:[1,4,8,9,10,12,14,15,16,17,18,21,24,27],malt:[],manag:[2,7,24],mani:[6,7,9,10,18,20],manner:[9,10,14,27],manual:[8,9,13,14,18],map:[3,9,11,14],mapping_mod:14,mar:3,margin:6,mark:8,marker:[3,14,23,27],marker_detect:[],marker_location_accuraci:14,marker_projection_accuraci:14,markers_circl:14,markup:14,mart:3,martinezcarricondoagueravegacarvajalramirez:[],mask:14,masking_mod:14,maskingmodealpha:14,maskingmodebackground:14,maskingmodefil:14,maskingmodemodel:14,match:[6,7,14,18],materi:16,math:24,mathemat:11,max:[7,24],max_neighbor:14,max_window_s:24,maxblend:14,maxim:7,maximum:14,mb:[7,24],mean:[2,7,9,11,13,17,21],measur:[7,8,9,10,21],mechan:21,media:1,medium:[7,14],mediumfacecount:14,meet:7,member:9,memori:14,mention:10,menu:[2,7,14,18,21],merg:18,mesa:3,mesh:[3,4,6,9,14,15,21],messag:9,metadata:[4,7,9,10,14,15,16,21,27],metashap:[1,4,8,9,11,13,14,16,23,27],metashape_project_nam:7,metashapeprocess:14,meter:14,method:[7,10,17],methodolog:[15,17,18],metr:[4,7,9,11,14,17],metric:[10,17],mf:18,micro:18,middl:8,mild:7,mildfilt:14,min:7,minblend:14,mind:[7,8,9,10,14,20],miner:17,mini:[],minim:[7,9,10,17],minimis:9,minor:[2,7,14],misalign:17,misidentif:9,mistak:18,mkdir:24,mm2:23,mm:[4,9,23],mode:[14,18],model:[3,4,6,8,9,14,16,23],model_filenam:4,modeldata:14,moderatefilt:14,modern:[6,9],modul:[2,11,14,27],modulenotfounderror:[],molli:24,month:2,more:[4,6,7,9,10,13,17,18,27],mosaic:14,mosaicblend:14,mosociova:[2,14],most:[7,9,10,11,12,13,14,17,18,21],mostli:10,motion:[3,27],mountain:6,mous:[7,10,21],move:[6,9,10,14,17,18,20],movement:18,mozallowfullscreen:[],ms:14,ms_20220207t1303:[],ms_20220826t1159:[],ms_20220907t1504:[],ms_20220907t1510:[],ms_20220907t1521:14,mu:3,much:[7,14,18],mug:4,multipl:[7,10,14,17,18],multipli:17,multispectr:14,must:[6,7,9],mutlipl:[],mwe:10,mxm:14,n:[2,3,14],nake:9,name:[2,4,7,10,14,23,24],nameerror:[],narrow:6,nathorst:23,natur:9,ncc:23,necessari:[7,27],need:[1,2,7,8,10,11,14,17,18,24,27],neighbor:14,neighbour:6,neither:11,network:14,networkprocess:14,never:[7,14],next:[4,7,8],nez:3,nine:7,nofilt:14,non:7,none:[2,24],nontheless:2,nor:[10,11],nordaustlandet:[4,23],normal:[6,17,18],north:23,norwegian:[],notabl:[13,17],note:[3,4,7,8,14,18],notebook:14,notebook_directori:14,noth:[6,9],notic:21,novemb:[],now:[2,4,7,8,9,14,18],np:[],number:[1,4,7,9,10,11,14,16,17,18,21,23,27],numer:15,numpi:2,nutshel:17,ny:23,obj:[4,23],object:[4,6,7,8,9,11,15,16,18],observ:[3,6],observasjonen:24,obtain:[7,9,15],occlus:3,off:[7,9],offer:2,offic:8,offici:7,offset:17,ofr20211039:7,often:[6,9,11,13],og:24,ogata:3,oil:3,ok:[7,10],olav:23,old:21,omit:9,onc:[2,6,7,10,16,18,21,27],one:[7,8,9,10,12,14,15,17,18,21],ones:18,onli:[1,4,6,7,8,9,10,12,14,15,17,21],onlin:[2,10,27],onscreen:21,onto:7,onward:2,open:[1,7,8,10,14,15,18,21],opencv2:[],opencv:[2,10],oper:[2,12,13,21,27],oppos:10,opt:10,optic:3,optim:[9,14,17,18,27],optimis:[1,10,14,18],optimize_w_gcps_onli:14,optimizecamera:14,optin:[],option:[7,10,14,18,21,23],orang:18,orangemonki:18,orcid:23,order:[9,11],org:23,organ:23,orient:[3,11,17],origin:[6,7,8,11,14,17,21],orthomosaicdata:14,orthophotomap:14,orvin:23,oscar:23,other:[1,2,4,6,7,8,9,10,13,14,17,18,20,23,27],otherwis:7,ouch:12,our:[2,4,7,9,17],ourselv:8,out:[4,7,8,15,16,24],outag:12,outcom:14,outcrop:[2,4,6,7,14,15,17,21,23],outer:6,outlin:[7,18],output:[6,7,13,14],output_path:14,over:[2,4,7,10,14,18],overal:[7,9],overexpos:17,overlap:[4,6,7,17],overview:[2,3,4,6,7,10,14],overview_img:7,overwrit:[7,14],overwritten:[],ow:9,own:[1,2,4,8],oz:3,p1:7,p2:7,p:[2,3,14],packag:[7,14,20],packet:24,page:[10,14,15,17,18,25,26,27],page_count:14,pain:21,panda:2,pane:7,panel:[7,10],paper:[8,17],paramet:[2,9,10,11,12,13,17,18],paramiko:24,parent:24,parenthes:14,park:[3,9],part:[1,3,7,8,10,15,17,27],partial:[],particular:[2,27],pass:24,password:[14,24],past:[14,17],patch:7,patcog:3,path:[14,18,23,24],pathlib:[14,24],patricio:3,pattern:3,pc:1,pd:[],pdf:[7,10],peak:[9,18],pebbl:[],pencil:8,peopl:0,per:[7,8,9,10,12,14,17,18,27],perceiv:6,percent:24,percentag:7,perfect:[],perform:7,perhap:7,period:[1,2,23],permiss:1,person1:4,person2:4,person3:[],person4:[],person:2,peter:[3,7,14,23,24],peterbetlem:14,petrel:[1,21],petroleum:11,phone:18,photo:[4,8,9,10,12,14,16,21],photo_path:14,photogrammetr:[3,27],photogrammetri:[1,2,3,7,9,11,14,15,27],photogrammetry_processing_set:14,photographi:15,photoscan:2,photoset:14,photoshoot:[],php:14,physic:[1,18],pick:[4,9,10,23],pictur:18,piec:8,pinpoint:9,pip:2,pirat:4,pix:23,pixel:[4,7,9,14],pixel_s:14,place:[4,6,7,8,9,10,17],plai:[7,14],plane:9,platform:[2,18],pleas:[0,1,2,4,7,8,10,14,16],png:14,point:[2,3,4,6,8,10,11,14,17,23],point_color:14,point_confid:14,point_confidence_max:14,pointclouddata:14,pointer:7,polygon:[6,7],pop:[7,21],popular:[9,10],popup:17,porra:3,port:7,pose:[3,9],posit:[6,7,9,10,11,17,18],possibl:[7,9,16,17,18],post:[17,24],potenti:[],pow:24,power:[1,6,7,12,14],practic:[4,27],pre:[7,11,14],preced:[14,17],precis:[4,9],predefin:7,prefer:[6,7,9,17],prepar:10,preselect:7,present:[1,7,14,15,17],press:[7,18],prevent:[1,2,7,9,14,17,18],previou:[7,17,27],previous:[2,7,10,14],primarili:1,prin:[4,23],princip:10,principl:[6,7],print:[9,10,24],printer:8,prior:[4,9,10,13,15],privat:[14,24],pro:8,probabl:[7,10],problem:7,proc:23,proc_alignment_accuraci:23,proc_camera_st:23,proc_camera_total_error:23,proc_camera_total_rms:23,proc_coverage_area:23,proc_dc_filter_conf_min:23,proc_dem_point_dens:23,proc_dem_resolut:23,proc_dense_cloud_confidence_min:23,proc_dense_cloud_confidence_minimum:23,proc_depth_map_accuraci:23,proc_flying_altitud:23,proc_gcp_crs_epsg:23,proc_gcp_total_rms:23,proc_gcp_typ:23,proc_georeferencing_count:23,proc_georeferencing_cr:23,proc_georeferencing_typ:23,proc_ground_resolut:23,proc_mesh_filter_con_comp:23,proc_refer:23,proc_sc_filter_proj_acc:23,proc_sc_filter_recon_uncert:23,proc_sc_filter_reproj_error:23,proc_softwar:23,proc_software_vers:23,proc_volum:23,proce:[2,7,8,10,13,14,16],procedur:[7,15],process:[1,2,6,8,9,10,13,15,16,17,18,24,27],processing_camera_len:[],processing_camera_model:[],processing_camera_st:4,processing_camera_total_error:4,processing_coverage_area:4,processing_d:[],processing_dem_point_dens:4,processing_dem_resolut:4,processing_flying_altitud:4,processing_georeferencing_cr:4,processing_georeferencing_marker_count:[],processing_georeferencing_marker_typ:[],processing_georeferencing_typ:4,processing_ground_resolut:4,processing_reference_contact:4,processing_report:7,produc:[3,18],product:7,profession:[2,14],program:[14,27],programm:21,progress:1,progressbar:24,project:[4,8,10,11,12,14,15,16,21],project_cr:14,project_directori:[7,10,14],project_path:14,prompt:[10,14,21],proper:[],properli:[7,9,21],properti:[9,21],provic:14,provid:[2,4,6,7,8,9,15,17,21,24],proxim:[9,17],psx:[7,14],pub:7,publ_embargo:23,publ_related_identifi:23,publ_sketchfab_id:23,publ_v3geo_model:23,publish:[14,16],publishdata:14,publishing_date_archiv:[],publishing_date_revis:[],publishing_sketchfab_id:[],publishing_svalbox_img_id:[],publishing_svalbox_post_id:[],purpl:7,purpos:[4,27],put:[6,7,8,10,14],py37:2,py3:2,py:14,pysftp:[],python3:[],python:[13,15,27],pyyaml:2,qualiti:[14,15,17,18],quality_cutoff:14,quantit:11,queri:17,question:16,queue:18,quick:7,quickli:[7,9],quit:9,r:[2,3,14,21,24],radiu:10,rais:2,ram:3,random:9,rang:[10,14,17,18,24],rate:[17,24],rather:[2,6,7,9],raw:[7,17,27],re:[7,8],reach:21,read:[5,10,19],read_config:14,read_yaml:14,readabl:10,reader:6,readi:[7,14,18],real:[7,8,9,11,13,14,15,16,17,21],real_world_posit:[],realiti:9,realli:7,reason:17,recent:14,recognit:[3,8],recommend:[2,6,7,12,14,18],reconstruct:[4,6,9],rectangl:[7,8],red:7,redirect:2,redistribut:2,reduc:[7,9,14],reduct:17,refer:[0,7,10,12,14,17,21],referenc:9,refrain:7,refresh:18,regardless:14,region:[],rekey_byt:24,rekey_packet:24,rel:[4,9,11],relat:[7,9,14,15,17,23,27],releas:[2,7,14],reli:[7,10,14,17],reliabl:3,remain:[7,10,14],remaind:14,rememb:[7,9,21],remot:[3,17,18],remov:[7,10,14,21],renam:[7,10],repeat:14,report:[2,4,8,14,23,27],repres:[6,10,17],reprocess:14,reproduc:[13,27],request:[1,4],requir:[1,4,7,8,9,11,13,14,16,17,21,27],research:1,reserv:1,reset:7,resid:7,resolut:[4,7,14],resourc:16,respect:17,respons:[4,7,15],rest:[],restrict:1,result:[6,7,9,12,13,14,17,18,21],reus:7,reuse_depth:14,review:9,revis:[14,21],revisit:7,reynold:3,rez:3,rgb:[7,14],ridg:9,right:[1,7,9,10,17,18,21],ring:18,rise:[9,10],risk:17,rmse:9,rnx3:24,rock:[9,23],room:1,root:[7,9],rotat:[17,18],round:17,routin:[],row:[9,10],rs12020330:[3,23],rule:[7,9,11],ruler:8,run:[2,7,8,14,27],run_nam:14,runa:7,runtim:14,s:[2,3,4,7,9,15,21],sabin:23,sadli:[7,11,17],safe:[],safeload:14,said:7,salina:3,same:[7,9,10,13,14,15,17,18,21],sampl:[1,2,3,10,11,14,16,18,21,23],sample_ag:[],sample_base_depth:23,sample_bulk_dens:23,sample_descript:[],sample_length:23,sample_litholog:23,sample_top_depth:23,sample_typ:[],sample_volum:23,sample_weight:23,sample_width:23,sampling_contact:[],sampling_d:[],sampling_island:[],sampling_land:[],sampling_latitude_wgs84:[],sampling_loc:[],sampling_longitude_wgs84:[],sandston:23,sara:24,sartel:[2,14],save:[4,10,12,14,18,21],savefil:21,scale:[2,4,9,10,11,14,15,21],scenario:9,scene:6,scienc:27,scientif:[10,13,27],screen:[7,14,18],screenshot:4,script:[2,9,10,13,14,24,27],se:8,search:[14,17],second:[7,9,18,24],section:[2,7,11,14,21],secur:[9,24],see:[2,6,7,9,10,11,15],seek:9,seen:17,seismic:[2,7,14],select:[4,9,10,12,18,21,24],self:14,semest:15,semi:[],send:4,senger:[1,2,3,14],sens:[3,21],separ:[2,4,10,23],sequenc:7,sequenti:12,seri:[6,14],serial:14,server:[7,14],server_ip:14,servic:[14,21],service4dmapp:14,servicemapbox:14,servicemelown:14,servicepicterra:14,servicepointbox:14,servicepointscen:14,servicesketchfab:14,servicesputnik:14,session:[4,7,8,16,17,21],set:[2,4,8,9,10,11,12,13,14,21],setup:[2,7,17,18],sever:[0,7,17,27],sfasd:14,sfm:[1,2,3,7,11,14,15],sftp:24,sftpclient:24,shadow:[17,18],shape:21,shapefil:21,share:27,sharkd:[],sharp:[9,17],shell:6,shift:14,shoot:18,shortcom:9,shot:[7,10,18],should:[1,2,4,7,8,9,10,13,14,15,16,17,18,21],show:[2,7,10,17,18,21,24],showcas:14,shown:[6,7,10,14,17],shutter:18,side:[4,14,17],sidewalk:9,sight:6,signific:10,siltston:23,similar:[6,7,9,11,18,21],simpl:[7,9],simpli:[8,14,21],simplist:9,simultan:[6,7],singl:[6,7,9,10,17,18,21,24],site:14,size:[7,15,16,21,23],sketchfab:[15,21],skill:27,skip:[1,7,14],skurtveit:3,slb:1,slight:10,slightli:[9,10],small:[2,4,8,9,11,15,18],smaller:17,smallest:[9,17],smart:18,snap:21,so:[1,2,7,9,10,15,16,17,21],softwar:[1,13,14,20,21,27],solut:[18,21],some:[4,6,7,8,9,11,14,15,24],someth:[7,17],sometiem:7,sometim:7,soni:18,sort:[7,10,24],sound:27,sourc:[7,8,14],source_data:14,space:[11,14,17],spare:7,spars:[4,6,7],spatial:11,spec:14,special:11,specialis:1,specif:[1,7,9,10,11,12,17,27],specifi:[2,7,11,17,21,24],speed:18,sphericalmap:14,spitsbergen:[4,23],split:[4,27],spot:9,spring:27,squar:[7,9,14],src:[],staff:[1,24],stage:[14,25,26],standard:[2,7,14,21],standardis:[4,8,9,10,16,18,27],start:[2,4,7,8,14,15,18],start_dai:24,start_dat:24,startup:14,state:[3,7],statement:8,station_short:24,stationari:7,stdout:24,step:[4,6,8,9,10,12,13,14,18],stick:7,still:[7,8,9],stop:[14,18],storag:[6,7],storage_analysi:[],storage_contact:[],storage_loc:[],store:[7,9,14,24],str:[23,24],straightforward:9,stratifi:9,streamlin:[2,14],strictli:[1,9],string:[4,23],strongli:10,strptime:24,structur:[3,4,7,18,27],stuck:[2,8],student:[1,4,7,24,27],studi:9,stuff:7,sub:[9,18],subcategori:23,subdirectori:[],subdivide_task:14,subdivis:14,submiss:15,submit:[4,7,15],subsequ:[9,10,13,21],succe:17,success:[14,17],successfulli:[14,24],suffici:[6,7,17],suggest:[4,7,9,14,18],suit:[2,10,27],suitabl:[1,4],summari:15,summaris:17,supervisor:1,supplementari:[4,7],suppli:[],support:[5,11,18,19],sure:[4,7,8,9,10,12,14,15,16,17,18,21,24],surfac:[6,14,15],surface_typ:14,surnam:[],surround:6,survei:[7,9,11],svalbard:[4,6,7,8,11],svalbox:[4,7,14,23],svalbox_hsm_id:[],svg:[],sy:24,symbol:[],symmetr:9,symmetri:9,syntax:[2,24],synthet:9,system:[2,10,21],systemat:10,t:[2,14,18,21],tab:[7,14],tabl:[7,17,18],tablet:18,take:[1,4,6,7,9,14,17,18,27],taken:[6,7,9,10,17,18],tall:17,tangent:[],target:[3,4,9,10,17,18,27],task:[4,14],teach:27,technic:9,tell:7,temp:14,temperatur:[17,18],templat:[14,16],template_file_path:14,template_s:14,term:6,termin:[1,2,21],terminu:9,terrain:9,test:18,tetrahedr:7,text:7,textur:[4,6,8,14,17],texture_s:14,than:[2,6,7,9,13,17],thei:[4,6,7,10],them:[4,7,8,10,21],themselv:9,therebi:17,therefor:[1,2,6,7,9,10,17,21],thi:[2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,23,24,25,26,27],thing:[7,13,17],think:4,third:7,thoma:3,those:[2,7,10,15],though:[7,9,10,11,14,15,21,27],thought:[4,8],thousand:9,three:[6,17,18],through:[0,2,7,10,11,13,14,17,18,21,24],throughout:[2,7,9,17],thu:[9,17],thumb:[7,9],thusfar:[10,21],tie:[7,14],tiepoint_covari:14,tile:[14,21],tile_s:14,tiledmodeldata:14,time:[1,2,9,14,17,18],timeless:9,timetupl:24,tip:[4,8,15,17],titl:[7,9,14],tm_ydai:24,tobedon:[],todo:[],togeth:[6,7,10],token:14,toler:7,too:7,tool:[3,7,8,10,15],top:[6,8,9,14,17,18],topleft:14,topright:14,torel:23,total:[7,9,15,17],touch:[],trace:6,traceback:14,track:[7,9,14],transform:[3,11],transmit:18,transport:24,treat:[8,21],tri:7,trial:[2,14],triangl:[7,9],trick:[4,8,15,17],trigger:17,troubl:9,truli:7,turn:[4,6,17,18],turntabl:18,tutori:[2,4,8,12,14,15,16,17],two:[4,6,7,10,11,17],txt:[4,7],type:[9,10,14,18,21],typic:[18,27],uav:[3,7,9],ui_control:[],ui_info:[],ui_inspector:[],ui_stop:[],ui_watermark:[],ui_watermark_link:[],uio:23,unabl:24,unalt:14,uncom:[],under:[3,7,16,18,25,26],undergo:[],undergon:7,understand:6,uni:[1,7,9,17,23,24],uniformli:17,uniqu:[2,6,7,10],unis_3051_20180827_spit_sarstangen_sarsoyra1_u:[],unis_project_campaign:23,unis_project_no:23,unit:[7,14,17,21],unitless:17,univers:[3,4,7,8],unlik:7,until:[7,21],unzip:[7,14],up:[1,4,7,8,9,14,18,21],upcom:11,updat:[2,7,12,14,17],upload:[7,14,15,21],upon:9,upsid:[4,17],url:[7,17],us:[0,1,2,6,7,8,9,10,11,13,15,17,18,21,22,23,27],usabl:6,useless:9,user:[1,2,7,14],usernam:24,usernanem:24,usual:[7,9,14,17],utilis:7,utm:[11,14],v1:2,v:23,valid:21,vallei:9,valu:[7,10,14,17,18],variabl:7,varianc:7,variat:3,varighet:24,variou:[2,7,13,17,18,20,21],vector:6,vega:3,veri:[4,7,9,10,14],verifi:[7,9,21],version:[13,23],versu:[7,17],vertec:6,vertext:7,vertic:[9,21],video:6,view:[0,6,7],viewer:14,vii:23,visibl:[7,8,10],visit:7,visual:[],visualis:[7,21],voila:8,volum:[9,23],volumetr:14,volumetric_mask:14,vr:[],vs:[7,17],wa:[6,9,14,24],wai:[4,9,10,17,21],walkthrough:27,want:[2,9,18],warn:[1,14],warrant:[1,9],water:16,wbg:[],we:[2,4,6,7,8,10,14,16,17,18,24,27],weak:4,webbrows:14,webkitallowfullscreen:[],webport:24,wedel:23,weigh:7,weight:[],welcom:1,well:[2,6,7,8,9,10,14,15,17,21,27],went:14,were:7,westobi:[3,6],wet:[],wg:11,wgs1984:14,wgs84:[],what:[9,16,21],whatev:17,when:[1,2,4,7,8,10,13,14,15,17,18,21],whenev:7,where:[2,4,6,7,9,14,18,24],whether:[7,14,21,27],which:[1,2,6,7,9,10,11,14,15,16,17,18,21,24,27],whilst:[10,13,14,15,18],white:[10,18],whl:2,who:7,why:[7,10,17],width:[],wikipedia:[],wildcard:11,win_amd64:2,window:[1,2,10,12,18,21],wise:10,wish:2,with_camera_track:14,within:[4,6,7,9,10,14,16,17,18,21],without:[1,2,6,8,9,10,15,17,21,23],wobbl:18,won:14,word:13,work:[1,2,7,9,10,14,17],workflow:[7,12,18,21],workspac:[7,10],workstat:4,world:[6,8,9,11,14,17,21],wors:[9,14],worth:10,would:[4,6,7,9,14,16,21],write:[1,2,7,15,24],written:1,wrong:17,wth:7,www:14,x:[2,7,10,24],xxx:[],xxxx:[],y:[2,24],yaml:23,year:24,yet:[6,10,14,15,17],yml:[7,14],yml_path:14,ymlfile:14,you:[1,2,4,5,6,7,8,9,10,16,17,18,19,21,27],your:[1,2,4,5,8,9,14,15,17,18,19,21,27],yourself:[7,10,12],yyyi:[4,23],yyyymmdd:24,z:6,zenodo:0,zfill:24,zoom:18},titles:["Cite Geo-SfM","Seismic lab (Signehamna)","Software","Bibliography","Exercise 1 - learning the ropes of SfM photogrammetry","SfM photogrammetry Quiz","SfM photogrammetry","Metashape Tutorial","Exercise 2 - learning the ropes of GCP and marker detection","Ground control points (GCPs)","GCP tutorial","Geo-referencing","Batch-based processing through Metashape GUI","Automation","Python-based standardised processing","Exercise 4 - Digitising field samples","Exercise 3 - Food for thought","Small object SfM photogrammetry","Foldio360 Tutorial","Hand-sized Sample Quiz","Geomodelling overview","Geomodeling tutorial","Best practices","Metadata templates for archiving","Downloading base station dGNSS data","Leica Infinity","Topodrone PPK","Welcome to Geo-SfM"],titleterms:{"0":26,"1":4,"101":17,"2":[7,8,26],"3":16,"3d":[7,17],"4":15,"999":[],"do":[4,7,9],"final":[],"true":17,A:[7,17],Be:9,In:7,The:[2,8,24,27],about:[4,7],access:[24,27],accuraci:[7,9],acknowledg:1,acquisit:[4,18],activ:2,ad:7,addit:14,agisoft:[2,7,10],align:7,along:7,alter:7,analyz:7,annot:[15,21],anoth:14,apertur:17,app:18,approach:[8,10],arch:17,archiv:23,aruco:10,assign:[4,8],autom:[1,9,10,13,14],backup:7,banana:16,base:[9,12,14,24],batch:12,befor:7,best:22,bibliographi:3,build:7,built:9,bulk:15,calibr:7,camera:[7,18],centr:[10,27],checklist:[4,8],cite:[0,2,14],cloud:7,colour:17,compat:10,compon:18,comput:[9,18],conda:2,condit:1,confid:7,configur:14,connect:18,consist:9,control:[7,9],coordin:[10,11,21],corona:8,correct:10,correctli:14,cours:[1,27],cr:10,creat:[2,7],data:[7,24],deadlin:[4,8,15,16],deliver:4,dens:7,densiti:15,depth:7,design:9,desktop:18,detect:[8,9,10],devic:18,dgnss:24,diagram:17,did:14,digit:[16,17,20,21],digitis:[15,17],distanc:21,document:7,dot:10,double_align:14,down:7,download:24,downscal:14,dslr:18,duplic:7,e:[],edg:18,environ:[2,7],error:7,everi:7,exercis:[4,7,8,15,16],experi:9,exposur:17,field:15,file:14,fill:14,filter:7,filter_mod:14,first:7,fix:27,flight:[],focu:17,folder:14,foldio360:18,follow:[1,7],food:16,forget:4,format:27,from:6,further:[6,7],g:[],gcp:[8,9,10],gener:[7,10],geo:[0,9,11,27],geomodel:[20,21],git:2,github:2,goal:[4,8],gp:9,ground:[7,9],gui:12,halo:17,hand:[9,17,19],handsampl:17,hardwar:18,high:7,highest:9,histogram:[],id:10,imag:[4,18],improv:7,infin:25,instal:[2,10],interpol:21,interpret:[15,20,21],jupyt:14,keep:7,know:14,lab:[1,14],label:10,learn:[4,8],leav:10,lectur:[6,17],leica:25,lightbox:[1,18,22],list:[],locat:9,lockdown:8,lyr:24,main:[],make:7,malt:17,manual:[7,10],map:7,marker:[8,9,10],match:10,me:[2,14],measur:[15,17],mesh:7,metadata:23,metashap:[2,7,10,12,15,21],miniconda:2,minim:14,mismatch:2,mode:[],model:[7,15,17,20,21],more:[],motion:6,motiv:27,multipl:[],need:9,network:[4,7],object:17,often:7,open:27,optim:7,order:10,other:22,out:14,outcrop:22,overview:20,own:7,packag:[2,24],paramet:[7,14],pc:18,per:[],phone:[],photo:[7,17,18],photogrammetri:[4,5,6,8,17],photographi:1,placement:9,point:[7,9,21],polygon:21,polylin:21,ppk:26,practic:22,problem:18,process:[4,7,12,14],program:10,programm:7,progress:[21,25,26],project:7,prompt:2,publish:7,python:[2,9,10,14,24],qualiti:7,question:[4,8],quiz:[5,19],read:[6,7],readabl:9,real:10,realiti:21,reconstruct:7,reduct:7,refer:11,referenc:11,remot:1,remove_photo_location_metadata:14,repeat:7,report:7,reproject:7,requir:[2,10,18,24],ring:17,rock:17,rope:[4,8],ruler:21,s:[8,17],sampl:[7,9,15,17,19],save:7,scale:[16,17],scientif:7,seismic:1,select:7,set:[7,17,18],sfm:[0,4,5,6,8,17,27],shape:9,shoot:[],shot:14,signehamna:1,size:[9,10,17,19],sketchfab:[7,17],small:17,softwar:[2,7,18],standardis:[7,14],station:24,step:7,strang:21,structur:[6,14],student:8,sub:[],suggest:27,support:[4,7,8,17],svalbard:[9,27],system:11,tablet:[],tbd:[],templat:23,term:[1,9],textur:7,than:[],thi:1,think:7,thought:16,through:12,tile:7,time:7,tip:18,tool:21,topic:27,topodron:26,toposett:26,tripod:17,turntabl:17,tutori:[7,10,18,21,26],uncertainti:7,uniqu:9,univers:27,us:[4,14],usg:7,v3geo:7,valu:21,verif:17,version:[2,7,14],versu:21,video:26,volum:15,wai:[7,24],want:7,warn:[],we:9,welcom:27,what:[4,7],when:9,without:7,work:[21,25,26],workflow:[4,8],world:10,yaml:14,you:14,your:7}})
\ No newline at end of file
diff --git a/content/lessons/l1/tutorial.md b/content/lessons/l1/tutorial.md
index c788468c..91d55fbe 100644
--- a/content/lessons/l1/tutorial.md
+++ b/content/lessons/l1/tutorial.md
@@ -82,6 +82,7 @@ Proceed by creating the following project_directory in the folder where you have
Herein folders are named without extensions, and filenames are given extensions.
Text between {} indicates variable names.
+````{tabbed} Handheld data
```
{project_directory} (The folder with all files related to this project)
| overview_img.{ext}
@@ -106,6 +107,8 @@ Text between {} indicates variable names.
| ...
├───────gcps
| (We'll get back to this in a later session)
+├───────GNSS
+| (We'll get back to this in a later session)
├───export (where you place export models and files to)
...
└───metashape (This is where you save your Agisoft Metashape projects to)
@@ -114,24 +117,78 @@ Text between {} indicates variable names.
{metashape_project_name}_processing_report.pdf
(optionally: {metashape_project_name}.log)
```
+````
-The standardised project structure (as we will see later on) is also used for automated processing.
+````{tabbed} UAV data
+```
+{project_directory} (The folder with all files related to this project)
+| overview_img.{ext}
+| description.txt
+├───config (where you place your configuration files)
+ {cfg_0001}.yml
+ {cfg_0002}.yml
+ ...
+├───data (where you unzipped the files to)
+├───────f0001 (The folder with images acquired on the first flight)
+| {img_0001}.{ext}
+| {img_0002}.{ext}
+| ...
+├───────f0002 (The folder with images acquired on the second flight)
+| {img_0001}.{ext}
+| {img_0002}.{ext}
+| ...
+| ...
+├───────f9999 (The folder with images acquired on the last flight)
+| {img_0001}.{ext}
+| {img_0002}.{ext}
+| ...
+├───────gcps
+| (We'll get back to this in a later session)
+├───────GNSS
+| (We'll get back to this in a later session)
+├───export (where you place export models and files to)
+ ...
+└───metashape (This is where you save your Agisoft Metashape projects to)
+ {metashape_project_name}.psx
+ .{metashape_project_name}.files
+ {metashape_project_name}_processing_report.pdf
+ (optionally: {metashape_project_name}.log)
+```
+````
+
+The standardised project structures (as we will see later on) are important for automated processing and archiving.
+The project structures are identical in principle, only differing in the way images are sorted.
### Photo set
-Having created the standardised project structure, proceed with extracting all your taken images to the following directory:
+Having created the standardised project structure, proceed with extracting your taken images to the following directory:
+
+````{tabbed} Single folder/acquisition
```
{project_directory}\data\100MEDIA
```
+````
-```{admonition} More than 999 images?
-:class: suggestion
+````{tabbed} Single acquisition with 1000 images
+```
+{project_directory}\data\100MEDIA (includes up to 999 images)
+{project_directory}\data\101MEDIA (includes remaining images)
+```
+````
-In case your project contains more than 999 images, make sure to utilise multiple media folders in the *data_directory*.
-In other words, create as many *{XXX}MEDIA* subdirectories as needed, and limit their contents to 999 images.
-This is especially useful when dealing with non-unique filenames, as the different directories prevent files being overwritten.
+````{tabbed} UAV acquisition with 3 flights
+```
+{project_directory}\data\f0001
+{project_directory}\data\f0002
+{project_directory}\data\f0003
```
+````
+
+In case the image count exceeds 999 images, make sure to utilise multiple folders in the *data_directory*.
+While you are at it, why not sort the images by flight or acquisition to improve your data structure?
+For instance, those [digitising hand-sized samples](../l4/hsstutorial "hss_tutorial"), or who have acquired data over multiple UAV flights, may find it beneficial to sort the data in specific ways.
+Not only is it easier to find the data that way, but it also prevents accidental data-overwrites of data with non-unique filenames!
````{admonition} Want to follow along without your own data?
:class: suggestion
@@ -157,7 +214,7 @@ Verify that this is indeed the case by double clicking one of the *cameras* in t
```{admonition} Save often!
:class: tip
It is important to save your work often.
-Make a habbit of saving at least after every step.
+Make a habit of saving at least after every step.
To do so, proceed to *Save as...* under *File* in the menu bar, and save your project in the *project_directory/metashape* directory that you created when extracting in data.
```