<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>EV Blog</title>
	<atom:link href="https://blog.elevatedvision.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.elevatedvision.co.uk</link>
	<description></description>
	<lastBuildDate>Thu, 25 Jan 2024 11:48:15 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.4.2</generator>

<image>
	<url>https://blog.elevatedvision.co.uk/wp-content/uploads/2023/12/cropped-EV-Website-Icon-60x60-1.png</url>
	<title>EV Blog</title>
	<link>https://blog.elevatedvision.co.uk</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>DJI Terra &#8211; Single Point of Failure &#8211; Mission.db</title>
		<link>https://blog.elevatedvision.co.uk/dji-terra-single-point-of-failure-mission-db/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=dji-terra-single-point-of-failure-mission-db</link>
					<comments>https://blog.elevatedvision.co.uk/dji-terra-single-point-of-failure-mission-db/#respond</comments>
		
		<dc:creator><![CDATA[Robert]]></dc:creator>
		<pubDate>Thu, 25 Jan 2024 00:08:25 +0000</pubDate>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[DJI]]></category>
		<category><![CDATA[Mission.db]]></category>
		<category><![CDATA[Terra]]></category>
		<category><![CDATA[Uncategorised]]></category>
		<guid isPermaLink="false">https://blog.elevatedvision.co.uk/?p=348</guid>

					<description><![CDATA[In this article I’m going to show a method for backing up a file that DJI Terra heavily relies on, it uses this file to store all project information and is in effect a single point of failure. The file lives in the DJI Cache and is called Mission.DB. The reason why this file should &#8230;<p class="read-more"> <a class="" href="https://blog.elevatedvision.co.uk/dji-terra-single-point-of-failure-mission-db/"> <span class="screen-reader-text">DJI Terra &#8211; Single Point of Failure &#8211; Mission.db</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>In this article I’m going to show a method for backing up a file that DJI Terra heavily relies on, it uses this file to store all project information and is in effect a single point of failure. The file lives in the DJI Cache and is called <strong>Mission.DB</strong>.</p>
<p>The reason why this file should be backed up regularly is because if it gets corrupted, you cannot load your projects.</p>
<p>I’ve seen a couple of posts about this file corrupting, and although Terra may be the culprit there are other more likely reasons a file can become corrupted such as a power outage during a write operation, or a disk issue, so to be safe and not sorry, here’s how to protect the file.</p>
<p>The method we’ll use here is a PowerShell script that runs on a schedule in the background, it’ll create backup’s of Mission.DB and call them mission.db.backup.&lt;Serial Number&gt;, e.g. <strong>missions.db.backup.1</strong></p>
<p>We’re going to need to create a new file and a new scheduled task, but before we get underway go and find your DJI Cache folder, make a note of the full path as we’ll refer to it in the rest of this article as <strong>&lt;DJI Cache Folder&gt;</strong>.</p>
<p>You can find the DJI Cache from within DJI Terra preferences as shown below:</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-85.png"><img fetchpriority="high" decoding="async" width="604" height="1194" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-73.png" border="0"></a></p>
<p>Let’s create that file now, mash that Windows key and type in Notepad and press Enter</p>
<p>When it opens paste in the script from below, and after pasting you <u>must </u>change the DJICacheFolder variable on the first line, make sure it correctly reflects your DJI cache folder:</p>
<p></p>
<p># Variables to control the script</p>
<p>$DJICacheFolder = &#8220;<strong>D:\PSTest</strong>&#8220;<br />
$RemoveFilesOlderThan = &#8220;-7&#8221;</p>
<p># Get the last backup sequence number so we can increment it<br />
$currentBackupSerialNumber = Get-ChildItem -Path $DJICacheFolder -Filter mission.db.backup* | Sort-Object CreationTime -Descending | Select-Object -First 1<br />
$nextBackupSerialNumber = $currentBackupSerialNumber.BaseName + &#8220;.&#8221; + ([int]$currentBackupSerialNumber.Extension.Split(&#8216;.&#8217;)[1] + 1)</p>
<p># Create a backup of the Mission.db file<br />
Write-Host &#8220;Next serial = &#8221; + $nextBackupSerialNumber<br />
Copy-Item -Force -Path D:\mission.db -Destination $DJICacheFolder\$nextBackupSerialNumber </p>
<p># Remove files older than X days old<br />
Get-ChildItem -Path $DJICacheFolder -Filter mission.db.backup.* | Where-Object {($_.LastWriteTime -lt (Get-Date).AddDays($RemoveFilesOlderThan)) } | Remove-Item</p>
<p></p>
<p>I’ve included the script as a screenshot just in case your web browser is changing anything when your copy the script above:</p>
<p></p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-86.png"><img decoding="async" width="955" height="297" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-74.png" border="0"></a></p>
<p>Now save the file to your DJI Cache and call it <strong>MissionDBBackup.PS1</strong>, before saving change <strong>Save as type</strong> to <strong>All Files (*.*)</strong>, if you don’t do this the file will be appended with <strong>.TXT</strong> and things won’t work.</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-87.png"><img decoding="async" width="532" height="164" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-75.png" border="0"></a></p>
<p>Check that the file is in the DJI cache folder, is correctly named and has the PS1 file extension not .TXT</p>
<p>Now open Microsoft Windows Task Scheduler, you can do this in a variety of ways, pressing the Windows key and typing Task Scheduler should get you there.</p>
<p>Once opened right-click the <strong>Task Scheduler Library </strong>text and select <strong>New Folder</strong></p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-71.png"><img loading="lazy" decoding="async" width="606" height="682" title="image" style="border-image: none; margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-59.png" border="0"></a></p>
<p>Choose a name for the folder, anything from Custom to your company name</p>
<p></p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-72.png"><img loading="lazy" decoding="async" width="606" height="236" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-60.png" border="0"></a></p>
<p>First select the new folder and then right-click and select <strong>Create Basic Task</strong></p>
<p></p>
<p></p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-74.png"><img loading="lazy" decoding="async" width="606" height="834" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-62.png" border="0"></a></p>
<p>The task needs a descriptive name, I’ve chosen <strong>DJI Terra – Backup Mission.db</strong>, once entered press <strong>Next</strong></p>
<p></p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-70.png"><img loading="lazy" decoding="async" width="606" height="426" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-58.png" border="0"></a></p>
<p>Keep the setting as they are, select <strong>Next</strong></p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-75.png"><img loading="lazy" decoding="async" width="606" height="426" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-63.png" border="0"></a></p>
<p>Same as above, don’t change anything simply select <strong>Next</strong></p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-76.png"><img loading="lazy" decoding="async" width="606" height="426" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-64.png" border="0"></a></p>
<p>We want to run a program when this scheduled task is told to run, so make sure <strong>Start a program</strong> is selected and select <strong>Next</strong></p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-77.png"><img loading="lazy" decoding="async" width="606" height="426" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-65.png" border="0"></a></p>
<p><p>For the <strong>Program/script</strong> text box enter the following: <strong>powershell.exe</strong></p>
<p>For the <strong>Add arguments (optional)</strong> text box enter the following after replacing the <strong>&lt;DJI Cache Folder&gt;</strong> references to become the path to your DJI Cache: <strong>-ExecutionPolicy Bypass –File &lt;DJI Cache Folder&gt;\MissionDBBackup.PS1</strong>, when done select Next</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-88.png"><img loading="lazy" decoding="async" width="606" height="426" title="image" style="border-image: none; margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-76.png" border="0"></a></p>
<p>Select that tick box to open the task’s properties and then select <strong>Finish</strong></p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-89.png"><img loading="lazy" decoding="async" width="606" height="426" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-77.png" border="0"></a></p>
<p>You should see the properties sheet appear showing the <strong>General</strong> tab, select <strong>Run whether user is logged on or not</strong>, this stops the PowerShell window appearing for a second when the task runs, select the <strong>Triggers</strong> tab after you are done</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-90.png"><img loading="lazy" decoding="async" width="606" height="461" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-78.png" border="0"></a></p>
<p>Click that trigger called <strong>Daily </strong>and select <strong>Edit</strong></p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-80.png"><img loading="lazy" decoding="async" width="606" height="461" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-68.png" border="0"></a></p>
<p>Now tick <strong>Repeat task every</strong> and choose <strong>1 hour</strong>,<strong> </strong>or choose however long in-between backups you prefer, you could set this to every 12 hours so at least one backup is made each day if the computer is turned on. Tick <strong>Stop task if it runs longer than</strong> and set that to <strong>30 minutes</strong>. Now select the <strong>Conditions</strong> tab </p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-81.png"><img loading="lazy" decoding="async" width="606" height="531" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-69.png" border="0"></a></p>
<p>Untick <strong>Start the task only if the computer is on AC power</strong> which will let the backup run if you are using a laptop. Select the <strong>Settings</strong> tab.</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-82.png"><img loading="lazy" decoding="async" width="606" height="461" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-70.png" border="0"></a></p>
<p>Tick <strong>Run task as soon as possible after a scheduled start is missed</strong>, this will trigger the backup straight away if you’ve left the computer off for a long time and turn it back on. You can set the other options as shown in the shot below, when done select <strong>OK</strong></p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-83.png"><img loading="lazy" decoding="async" width="606" height="461" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-71.png" border="0"></a></p>
<p>Because we set the task to run as non-interactive\hidden, we need to punch in some credentials for the task to run under, this should be your local account</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-91.png"><img loading="lazy" decoding="async" width="606" height="494" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-79.png" border="0"></a></p>
<p>You should see your new Task appear in the folder you created</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-84.png"><img loading="lazy" decoding="async" width="606" height="291" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-72.png" border="0"></a></p>
<p>To check this all works, right click your new task and select Run. </p>
<p>Do you see a new backup file in your DJI Cache folder? If so you’re good to go. </p>
<p>And to recover if mission.db does get corrupted or accidently deleted just make sure Terra is closed, rename mission.db to mission.db.faulty, and get one of the latest backups and rename it to mission.db, start Terra see what gives, replace with older backups until you get a non-corrupted copy of the file.</p>
<p></p>
<p>If it isn’t working things that can go wrong are:</p>
<ul>
<li>PowerShell cannot find the script, is it named correctly, is the file extension set to PS1?</li>
<li>The script or the scheduled task cannot find the DJI Cache folder, do you have the path to your DJI Cache set correctly in the script and task?</li>
<li>Worth checking that you have not typed something in wrongly somewhere, go back and double check what you entered</li>
</ul>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.elevatedvision.co.uk/dji-terra-single-point-of-failure-mission-db/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Metashape Guide &#8211; Part 2</title>
		<link>https://blog.elevatedvision.co.uk/metashape-guide-part-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=metashape-guide-part-2</link>
					<comments>https://blog.elevatedvision.co.uk/metashape-guide-part-2/#comments</comments>
		
		<dc:creator><![CDATA[Robert]]></dc:creator>
		<pubDate>Sun, 14 Jan 2024 21:27:02 +0000</pubDate>
				<category><![CDATA[Uncategorised]]></category>
		<category><![CDATA[EVLearning]]></category>
		<category><![CDATA[Metashape]]></category>
		<guid isPermaLink="false">https://blog.elevatedvision.co.uk/?p=256</guid>

					<description><![CDATA[This is part 2 of a multi-part guide on Agisoft Metashape. In Part 1 we talked about the competing professional photogrammetry products and their costs, now we’re going to go over the installation of Metashape on Microsoft Windows using the 30-day free trial, and in the following parts in this guide we’ll cast out and &#8230;<p class="read-more"> <a class="" href="https://blog.elevatedvision.co.uk/metashape-guide-part-2/"> <span class="screen-reader-text">Metashape Guide &#8211; Part 2</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p></p>
<p>This is part 2 of a multi-part guide on Agisoft Metashape.</p>
<p></p>
<p>In <a href="https://blog.elevatedvision.co.uk/metashape-guide-part-1/" target="_blank" rel="noopener">Part 1</a> we talked about the competing professional photogrammetry products and their costs, now we’re going to go over the installation of Metashape on Microsoft Windows using the 30-day free trial, and in the following parts in this guide we’ll cast out and begin exploring the features.</p>
<p>The version of Metashape being installed is 2.1.0. I doubt major version changes in the future will change this installation workflow, which is pretty much a <em>next, next, finish</em> affair.</p>
<p></p>
<h2>Required reading</h2>
<p></p>
<p>A good rule-of-thumb on hardware requirements can be found here:</p>
<p></p>
<p><a href="https://www.agisoft.com/downloads/system-requirements/" target="_blank" rel="noopener"><img loading="lazy" decoding="async" width="835" height="354" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-47.png" border="0"></a></p>
<p align="center"><a title="https://www.agisoft.com/downloads/system-requirements/" href="https://www.agisoft.com/downloads/system-requirements/">https://www.agisoft.com/downloads/system-requirements/</a></p>
<p align="center"></p>
<p>There are quite a few guides to check out, useful ones at this point would be:</p>
<h3>Hardware recommendations</h3>
<p><a href="https://agisoft.freshdesk.com/support/solutions/articles/31000161532-recommendations-when-choosing-new-hardware-for-metashape" target="_blank" rel="noopener"><img loading="lazy" decoding="async" width="454" height="253" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-40.png" border="0"></a></p>
<p align="center"><a title="https://agisoft.freshdesk.com/support/solutions/articles/31000161532-recommendations-when-choosing-new-hardware-for-metashape" href="https://agisoft.freshdesk.com/support/solutions/articles/31000161532-recommendations-when-choosing-new-hardware-for-metashape">https://agisoft.freshdesk.com/support/solutions/articles/31000161532-recommendations-when-choosing-new-hardware-for-metashape</a></p>
<p></p>
<h3>GPU recommendations</h3>
<p><a href="https://agisoft.freshdesk.com/support/solutions/articles/31000150614-general-information-related-to-gpu-processing" target="_blank" rel="noopener"><img loading="lazy" decoding="async" width="454" height="235" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-41.png" border="0"></a></p>
<p align="center"><a title="https://agisoft.freshdesk.com/support/solutions/articles/31000150614-general-information-related-to-gpu-processing" href="https://agisoft.freshdesk.com/support/solutions/articles/31000150614-general-information-related-to-gpu-processing">https://agisoft.freshdesk.com/support/solutions/articles/31000150614-general-information-related-to-gpu-processing</a></p>
<p></p>
<h3>Memory recommendations</h3>
<p><a href="https://agisoft.freshdesk.com/support/solutions/articles/31000157329-memory-requirements-for-processing-operations" target="_blank" rel="noopener"><img loading="lazy" decoding="async" width="454" height="231" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-42.png" border="0"></a></p>
<p align="center"><a title="https://agisoft.freshdesk.com/support/solutions/articles/31000157329-memory-requirements-for-processing-operations" href="https://agisoft.freshdesk.com/support/solutions/articles/31000157329-memory-requirements-for-processing-operations">https://agisoft.freshdesk.com/support/solutions/articles/31000157329-memory-requirements-for-processing-operations</a></p>
<p>I couldn’t find a Disk recommendations guide, it would no doubt talk about the importance of achieving high disk IOP’s, placing your project and photograph files onto solid state drives, either via SATA or the PCI-E based NVMe M.2, and putting multiple disks into a RAID 10 array for even better performance. If you turn disk caching on after adding a UPS, you can get a bit more performance out of the RAID array. Its worth noting that if you’re using RAID and turn on disk caching, if a power-cut takes place you will lose data and most likely corrupt the file system on the disk, hence a battery-powered UPS for an automated graceful shutdown before the UPS’s battery runs out. Most people won’t need that kind of setup for performance and reliability, so a slightly spec’d up mid-range PC will often do the job. If you centre your render engine around an expensive laptop, you’re going to be limited when it comes to upgrading in a year or two’s time, so go with a desktop PC straight away.</p>
<p></p>
<p>I recall that DJI Terra will not work without a GPU, whereas Metashape can operate purely on the CPU’s if you wanted it to, but your investment in a decent graphics card is very much key here, part of making sure your rendering platform (the hardware and software) or render engine is going to tear through the workload as quickly as possible. Maybe in another post in the series I’ll cover what an optimal setup would look like, but we’ll leave all that for now.</p>
<p></p>
<h2>Installation</h2>
<p></p>
<p>The installation is pretty straight forward, the only change I make is to the path for where the application will be installed. I like to change this from the Operating System (OS) drive to another drive, but depending on your setup you might have only a single disk so choose C: as the destination in this case, otherwise put the application on to a separate drive. </p>
<p>This is really just best practice to remove any possible disk read\write contention from the OS disk. I think that due to the way Metashape works, its hardly ever going to touch the disks to load part of itself in and out of memory, but, if you do run very low on memory you won’t want Metashape trying to do this while the OS is trying as well. Like I said, you cannot do this if your hardware setup is a laptop with a single disk drive. </p>
<p>Note: A new disk partition on the same disk the Operating System uses is not the same as creating a partition on another disk</p>
<p></p>
<p>Go download the installer, its sub 200MB in size and is in Microsoft Installer (MSI) form, support is there for macOS and Linux. That’s three key operating systems supported, unlike Terra or Pix4dMatic. If you want to run your render engine on Linux, you can, although I’m not sure if the graphics card drivers are going to be as good as they are for Windows.</p>
<p align="center"><a href="https://www.agisoft.com/downloads/installer/" target="_blank" rel="noopener"><img loading="lazy" decoding="async" width="831" height="512" title="image" style="border: 0px currentcolor; border-image: none; display: inline; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image1-1.png" border="0"></a></p>
<p align="center"><a title="https://www.agisoft.com/downloads/installer/" href="https://www.agisoft.com/downloads/installer/">https://www.agisoft.com/downloads/installer/</a></p>
<p></p>
<p></p>
<p>Launch the MSI to begin installation:</p>
<p></p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-43.png"><img loading="lazy" decoding="async" width="835" height="655" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-33.png" border="0"></a></p>
<p>Select Next:</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-44.png"><img loading="lazy" decoding="async" width="835" height="655" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-34.png" border="0"></a></p>
<p>Accept license terms and Select Next:</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-45.png"><img loading="lazy" decoding="async" width="835" height="655" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-35.png" border="0"></a></p>
<p>Select Next</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-46.png"><img loading="lazy" decoding="async" width="835" height="655" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-36.png" border="0"></a></p>
<p>As I pointed out earlier, I like to install applications away from the OS disk as much as possible, the same can apply to Metashape, but if you hdo not have another disk go ahead and use the recommended path on C:, and Select Next, otherwise change to whatever drive letter you are using, example would be <strong>D:\Program Files\Agisoft\Metashape Pro</strong>,<strong> </strong>Select Next:</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image13.png"><img loading="lazy" decoding="async" width="835" height="655" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image13_thumb.png" border="0"></a></p>
<p>Select Install:</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image28.png"><img loading="lazy" decoding="async" width="835" height="849" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image28_thumb.png" border="0"></a></p>
<p>Accept the User Account Control prompt if one is produced by the operating system:</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image33.png"><img loading="lazy" decoding="async" width="835" height="655" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image33_thumb.png" border="0"></a></p>
<p>Once its done Select Finish:</p>
<p></p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-33.png"><img loading="lazy" decoding="async" width="505" height="257" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-28.png" border="0"></a></p>
<p align="center">Above: You’ll see it appear in the Start Menu if you have one, sorry if you’re on Windows 11, wait for Windows 12 when they re-introduce it:</p>
<p>Now launch Agisoft Metashape Professional.</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image41.png"><img loading="lazy" decoding="async" width="614" height="324" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image41_thumb.png" border="0"></a></p>
<p>You’ll see a command prompt appear, it’ll note your unlicensed state and shortly after Metashape will load in:</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-35.png"><img loading="lazy" decoding="async" width="867" height="493" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-30.png" border="0"></a></p>
<p>Now its time to activate the 30-day trial</p>
<p></p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-36.png"><img loading="lazy" decoding="async" width="626" height="525" title="image" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-31.png" border="0"></a></p>
<p>Select <em>Start a free 30-day trial </em>and select OK, after a few moments the licensing will be completed and your trial will begin.</p>
<h2>Next steps …</h2>
<p></p>
<h3>Install Datums \ Geoids</h3>
<p></p>
<p>Now would be a good time to fetch a geodetic coordinate reference model, or Datum, that represents the coordinate system needed for your part of the world. Agisoft have quite a few available for us to download: </p>
<p><a href="https://www.agisoft.com/downloads/geoids/" target="_blank" rel="noopener"><img loading="lazy" decoding="async" width="780" height="319" title="image" style="border: 0px currentcolor; border-image: none; margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-48.png" border="0"></a></p>
<p align="center"><a href="https://www.agisoft.com/downloads/geoids/">https://www.agisoft.com/downloads/geoids/</a></p>
<p>Browse the list and download the ones for your country. The installation instructions are quite clear, download a datum in to a folder called GEOIDS, which is located in the Metashape installation directory.</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-49.png"><img loading="lazy" decoding="async" width="758" height="319" title="image" style="border: 0px currentcolor; border-image: none; margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-37.png" border="0"></a></p>
<p>For the UK both the previous and current datums are available. Copy these to that GEOIDS folder and restart Metashape, you’ll then see them become available for selection when handling coordinate systems for your projects.</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-50.png"><img loading="lazy" decoding="async" width="831" height="495" title="image" style="border: 0px currentcolor; border-image: none; margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-38.png" border="0"></a></p>
<p align="center">Above: The Geoid’s downloaded from Metashape and copied to the GEOIDS folder</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-51.png"><img loading="lazy" decoding="async" width="831" height="1153" title="image" style="border: 0px currentcolor; border-image: none; margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-39.png" border="0"></a></p>
<p align="center">Above: The Geoid showing up in-product as a selectable coordinate system</p>
<h3>Configure Metashape</h3>
<p>There isn’t much that needs configuring out of the box, I’ll post the tabs so you can see what’s there for version 2.1.0.</p>
<p></p>
<p>To take a look yourself open Metashape and go to Tools &gt; Preferences:</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-52.png"><img loading="lazy" decoding="async" width="831" height="1039" title="image" style="border: 0px currentcolor; border-image: none; display: inline; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-40.png" border="0"></a></p>
<p>Above: General Tab &#8211; Depending on how you roll, you can switch from dark to light theme for the application</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-53.png"><img loading="lazy" decoding="async" width="831" height="1847" title="image" style="border: 0px currentcolor; border-image: none; display: inline; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-41.png" border="0"></a></p>
<p>Above: Appearance Tab – Most of the colours used throughout the interface and some of the UI settings can be modified here</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-54.png"><img loading="lazy" decoding="async" width="831" height="1012" title="image" style="border: 0px currentcolor; border-image: none; display: inline; background-image: none;" alt="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-42.png" border="0"></a></p>
<p>Above: Advanced Tab – Make sure <em>Store absolute image paths</em> is <u>not</u> enabled, otherwise your project files will not be portable</p>
<p></p>
<p>Well that wraps up install and gave you a quick peek at some of the settings that can be changed, as I said before the product’s pretty much ready to use straight out of the box.</p>
<p></p>
<h2>Useful links and resources</h2>
<p></p>
<p>Here’s some links you might find useful while exploring Metashape and Datums.</p>
<p></p>
<p>Ordinance Survey Data &#8211; <a title="https://www.ordnancesurvey.co.uk/" href="https://www.ordnancesurvey.co.uk/">https://www.ordnancesurvey.co.uk/</a></p>
<p>OSD OSTN15/OSGM15 &#8211; <a title="https://www.ordnancesurvey.co.uk/blog/ostn15-new-geoid-britain" href="https://www.ordnancesurvey.co.uk/blog/ostn15-new-geoid-britain">https://www.ordnancesurvey.co.uk/blog/ostn15-new-geoid-britain</a></p>
<p>OSD OSTN Update Tool (old OSTN02/OSGM02 to new OSTN15/OSGM15) &#8211; <a title="https://www.ordnancesurvey.co.uk/gps/transformation/updateOSTN" href="https://www.ordnancesurvey.co.uk/gps/transformation/updateOSTN">https://www.ordnancesurvey.co.uk/gps/transformation/updateOSTN</a></p>
<p>OSD Grid InQuest II ETRS89\WGS84 to OSTN15\OSGM15 conversation software (Windows) &#8211; <a href="https://www.ordnancesurvey.co.uk/business-government/tools-support/os-net/transformation">https://www.ordnancesurvey.co.uk/business-government/tools-support/os-net/transformation</a></p>
<p>ECEF-LLA Converter &#8211; <a href="https://www.sysense.com/products/ecef_lla_converter/index.html">https://www.sysense.com/products/ecef_lla_converter/index.html</a></p>
<p>BNG\NGR to WGS84 Online Convertor &#8211; <a href="https://webapps.bgs.ac.uk/data/webservices/convertForm.cfm">https://webapps.bgs.ac.uk/data/webservices/convertForm.cfm</a></p>
<p>Notes on coordinate system conversion &#8211; <a href="https://digimap.edina.ac.uk/help/gis/transformations/">https://digimap.edina.ac.uk/help/gis/transformations/</a></p>
<p></p>
<p></p>
<p></p>
<p>Metashape Manual &#8211; <a href="https://www.agisoft.com/downloads/user-manuals/">https://www.agisoft.com/downloads/user-manuals/</a></p>
<p>Metashape Knowledgebase &#8211; <a href="https://agisoft.freshdesk.com/support/solutions">https://agisoft.freshdesk.com/support/solutions</a></p>
<p>Metashape Tutorials &#8211; <a href="https://www.agisoft.com/support/tutorials/">https://www.agisoft.com/support/tutorials/</a></p>
<p>Metashape YouTube channel &#8211; <a href="https://www.youtube.com/channel/UCPheXwPeFLnWHo8u4ksSH7w">https://www.youtube.com/channel/UCPheXwPeFLnWHo8u4ksSH7w</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.elevatedvision.co.uk/metashape-guide-part-2/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Metashape Guide &#8211; Part 1</title>
		<link>https://blog.elevatedvision.co.uk/metashape-guide-part-1/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=metashape-guide-part-1</link>
					<comments>https://blog.elevatedvision.co.uk/metashape-guide-part-1/#comments</comments>
		
		<dc:creator><![CDATA[Robert]]></dc:creator>
		<pubDate>Sun, 07 Jan 2024 19:52:19 +0000</pubDate>
				<category><![CDATA[Uncategorised]]></category>
		<category><![CDATA[EVLearning]]></category>
		<category><![CDATA[Metashape]]></category>
		<guid isPermaLink="false">https://blog.elevatedvision.co.uk/?p=119</guid>

					<description><![CDATA[Welcome to my guide on Agisoft Metashape, the tool of champions. In this multi-part guide we’re going to take a look at Agisoft’s Metashape, deep diving as much of the feature-set as I can fit in. I’m Robert Marshall, and I work @ ElevatedVision as the Chief Pilot and founding director, with a hint of &#8230;<p class="read-more"> <a class="" href="https://blog.elevatedvision.co.uk/metashape-guide-part-1/"> <span class="screen-reader-text">Metashape Guide &#8211; Part 1</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<h3 align="center">Welcome to my guide on Agisoft Metashape, the tool of champions.</h3>
<p align="left"><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-13.png"><img loading="lazy" decoding="async" style="border: 0px currentcolor; margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" title="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-12.png" alt="image" width="948" height="462" border="0" /></a></p>
<p align="left">
<p align="left">
<p align="left">
<p align="left">
<p>In this multi-part guide we’re going to take a look at Agisoft’s Metashape, deep diving as much of the feature-set as I can fit in.</p>
<p>I’m Robert Marshall, and I work @ ElevatedVision as the Chief Pilot and founding director, with a hint of an IT background, and as of the date of this post I’ve been a UAV pilot for about 18 months.</p>
<p>These guides are my go at helping others that like me, began their journey needing to learn a lot very quickly, doing so by reading as much can be found online, swinging from one blog or video to another, hoovering up knowledge. I hope that this series adds to the volume of community knowledge already out there, and that there’s something in here that helps you along your way.</p>
<p>Some assumptions that are made for this guide are:<br />
•You have used DJI Terra<br />
•You haven’t used Agisoft’s Metashape but want to take a look<br />
•You’ve gotten a smidgen of talent from using Terra, and feel ready to go to the next level</p>
<p>It is worth noting that as of the date of this guide, the version of Metashape that will be used is Version 2.1.0.</p>
<h2>Apps with Skin In The Game</h2>
<p>So far I’ve used two of the three products that I know are considered leading in the UAV industry for professional photogrammetry software, there are other apps out there such as Autodesk ReCap with its BIM features\functionality, Meshroom, and RealityCapture, some of which I will cover in another series.</p>
<p align="center">
<p align="center">Agisoft Metashape, DJI Terra and Pix4dMatic</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-7.png"><img loading="lazy" decoding="async" style="border: 0px currentcolor; margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" title="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-6.png" alt="image" width="916" height="306" border="0" /></a></p>
<p>In most cases if you have DJI equipment, especially a camera, then you received a key for a 6 month free trial of DJI Terra, and you most likely have some experience with it. What with Terra being given away like candy by DJI, I’ll assume that like me it was your first bit of professional photogrammetry software used to render 3D models, cloud points, surface models and Orthomosiac photographs.</p>
<p>I started out with DJI Terra after purchasing a DJI Matrice 300 RTK and Zenmuse P1 camera. Terra’s simplified interface and good-looking results make it very usable, and fundamentally it forms part of the DJI Hardware\Software eco-system. You can fly and render end-to-end using DJI technology, the documentation isn’t the greatest, the product gets regular updates, support is there on the DJI Forums if needed, and the price is competitive but it lacks broadness of functionality.</p>
<p>What it does really well is simplify the workflow needed to get results, appealing to the most basic of user who, with minimal hand-holding, can produce 3D models, Orthomosiacs, dense point clouds and surface (DSM) models with ease. Capable of producing good-looking results, with a small learning curve its a tool ideally suited to beginners, carrying most of what they need to do until they get to the point when they realise what’s being missed, what the others do, and in many cases do far better.</p>
<p>I understand that some of us don’t need to push Terra that much, all you need to do is forward on to customers the raw results Terra produces and in most cases its job done, without the need to take them into other products to tidy up or produce further materials, such as a contour map, or cleaning up cloud points to name but a few, and if that’s you then it may seem like there isn’t much point leaving Terra, but my opinion is that if you are in this business and want to be serious about it, you will want to plan to move off of Terra at some point, and into one of the bigger more feature-rich products, perhaps your license is coming up for renewal, now is a good time to consider the switch, preferably with some overlap for business continuity sake.</p>
<h2>Pricing</h2>
<p>There’s two pricing models, subscription-based licensing or a permanent license. I prefer to own a product in some circumstances, and this is one of them, I see it as a long-term investment in the business, and I don’t want the engine that underpins the entire business to have a kill-switch built into it. It leaves me able to plan-in the upgrade at a time that is right for the business, and if a feature in a newer release is important enough to need, I can simply bring forwards the upgrade.</p>
<p>Pricing is different between all three products for both types of license, if we look at the costs for a permanent license for each product its Pix4d, Terra and Metashape, if we look at it per year its Pix4d and Terra. Metashape doesn’t do a yearly license but the concept is there, in the form of charging for major milestone upgrades. They state that to go from version 1.x to version 2.x was supposed to be chargeable, but they recently allowed their 1.x customers to upgrade for free to 2.x, meaning no one was charged to get the latest release, so their investment in Metashape continued for another year free of charge with support and updates. I’m sure they will charge to go to 3.x but that should be another year off, I expect that they will charge at the next major milestone release, I do not know if they will charge the permanent license again or a discounted upgrade charge like DJI Terra.</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-19.png"><img loading="lazy" decoding="async" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" title="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-18.png" alt="image" width="1060" height="915" border="0" /></a></p>
<h3>Pix4dMatic</h3>
<p>PIX4D is a family of products each with specific use-cases and license costs, the notable one being PIX4Dmatic, and PIX4DMapper, PIX4DSurvey, with perpetual and subscription-based licensing.</p>
<p>I have not used Pix4dMatic, I will give its trial a go at some point, I was introduced to their products by my DJI reseller and RAE, but since Terra was free for 6 months, I wasn’t ready or keen to look into it. When it came time to upgrade, I decided to go with Metashape with a bit of steer from another pilot. To be fair I could have gone either way, with Pix4d’s products being loaded with features, and the overlap is considerable in what they both do, but I liked the technical and very geeky aspects of Metashape, so went with that instead.</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-20.png"><img loading="lazy" decoding="async" style="border: 0px currentcolor; margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" title="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-19.png" alt="image" width="1102" height="818" border="0" /></a></p>
<p>DJI Terra</p>
<p>DJI Terra is a great product, but I think its permanent license is way over-priced. Don’t even look at the price for the clustered version its eye-watering for what you get. The permanent license is over-priced because the feature-set is limited and as an application its not that versatile. It costs less than Pix4d Mapper and yet more than Metashape, while delivering less than either. There’s hardly any in-product editing, the workflow is on-rails and quite rigid, a project is often a one-time run-through affair, its great at what it does acting as a factory production line, put photo’s in, do some post-render prep work with GCP’s and Datums, configure the engine a little more, and let it render to finally manually export the results. For what it delivers the price for a permanent license is just unrealistic, I wonder if its priced so high because of the Electricity license that lights up parts of the product that remain dark with the Pro license. Aside from the Electricity edition and its value in that niche the energy industry, I think after a few posts of this guide you’re going to see how limited Terra is.</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-8.png"><img loading="lazy" decoding="async" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" title="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-7.png" alt="image" width="1056" height="280" border="0" /></a></p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-17.png"><img loading="lazy" decoding="async" style="margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" title="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-16.png" alt="image" width="1057" height="114" border="0" /></a></p>
<h3></h3>
<h3>Agisoft Metashape</h3>
<p>Agisoft offer Metashape, which can best be described as the swiss-army knife of photogrammetry software, lot of in-product tooling to cater for the phases in whatever workflow is taking place, most of it is exposed via Python and can be scripted, and it comes in two editions, with Professional being the one we’ll be focusing in on. Along the way we’ll also check out Agisoft’s Cloud service, that integrates with Metashape Professional.</p>
<p><a href="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image-18.png"><img loading="lazy" decoding="async" style="border: 0px currentcolor; margin-right: auto; margin-left: auto; float: none; display: block; background-image: none;" title="image" src="https://blog.elevatedvision.co.uk/wp-content/uploads/2024/01/image_thumb-17.png" alt="image" width="1129" height="245" border="0" /></a></p>
<p>I see that there is a good reason to use Terra, but its limitations overcome its usefulness over time, with exports being imported into other paid or free products to fill the gaps, and to choose between Metashape or Pix4dMatic, you are going to have to take a good look at their offerings both online (Cloud) and offline (Desktop), and make your own decision. The price shouldn’t put you off, consider how each fits within your company and existing\future workflows, its a big investment.</p>
<p>Next up in <a href="https://blog.elevatedvision.co.uk/metashape-guide-part-2/" target="_blank" rel="noopener">Part 2</a> we’ll begin the installation of Metashape before we get underway with an overview, we’ll look at the trial, install the product and do some post-installation configuration.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.elevatedvision.co.uk/metashape-guide-part-1/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
