- 11
- 12 307
Michel Morgan's Class
Canada
เข้าร่วมเมื่อ 31 ส.ค. 2020
Videos For Our Class!
Drone Planning & Google Earth Tool
Create waypoint mission for a drone
Create Google Earth Kml for a virtual or actual drone flight
Tested with DJI Mavic Mini
Notes: USGS has recently changed its Elevation API. So, some of the generated kml files (only in the states) were not created properly. Waypoints were not affected. Kml issues have been resolved!
Create Google Earth Kml for a virtual or actual drone flight
Tested with DJI Mavic Mini
Notes: USGS has recently changed its Elevation API. So, some of the generated kml files (only in the states) were not created properly. Waypoints were not affected. Kml issues have been resolved!
มุมมอง: 3 252
วีดีโอ
Geomatics Engineering at SAIT (Quick Info)
มุมมอง 3.7K2 ปีที่แล้ว
Quick Introduction to Geomatics Engineering Technology at SAIT
Lesson 2.1: Connect USB- GPS/GNSS to Raspberry Pi
มุมมอง 4.3K3 ปีที่แล้ว
Key commands: lsusb dmesg | grep tty cd /dev/ ls cat /dev/ttyUSB0 cat /dev/ttyACM0 Next video's python code: import serial import time # Input Parameters #port = '/dev/ttyACM0' port = '/dev/ttyUSB0' OutputFile="out_nmea.txt" ser = serial.Serial(port, baudrate = 9600, timeout = 0.5) filep=open(OutputFile, "w") try: while True: Line = ser.readline() Line=str(Line) print (Line) filep.write(Line) f...
Sample Project: Remote GPS/GNSS, Google Maps API updates
มุมมอง 1853 ปีที่แล้ว
Sample Project: Remote GPS/GNSS, Google Maps API updates
Lesson 1.4: Connecting Raspberry Pi to a Phone
มุมมอง 733 ปีที่แล้ว
Lesson 1.4: Connecting Raspberry Pi to a Phone
Lesson 1.3: Using Raspberry Pi & Computer on Different Networks
มุมมอง 243 ปีที่แล้ว
Lesson 1.3: Using Raspberry Pi & Computer on Different Networks
Lesson 1.2: Transfer Files Between Raspberry Pi & Computer
มุมมอง 443 ปีที่แล้ว
Lesson 1.2: Transfer Files Between Raspberry Pi & Computer
Lesson 1.1: Setting up Raspberry Pi & Connecting it to a Computer via VNC (Same Network)
มุมมอง 1043 ปีที่แล้ว
Lesson 1.1: Setting up Raspberry Pi & Connecting it to a Computer via VNC (Same Network)
I need your help with a solar inspection project that I think your program could be beneficial. We need a KML path not waypoints, can you help?
After creating a kml using this website, load it in Google Earth (GE). In GE and under Places, turn everything off, but project..kml\FieldOfViews_3D\3D_Path. You could save that as a stand-alone drone path in kml format by right-clicking on that sub-category and choosing "Save Places As". Hope that help!
Thank you Michel. Great work
My pleasure!
Thanks for this awesome tool! Is there an input field to take Google Earth directly to a given project location or is browsing the only current method?
Hi Gary. Thanks for the feedback. If you save *.prj file, the next time you load the *.prj, the tool will pan to the project area. I can try to add browse to "Latitude" and "Longitude" fields in the next version.
Very interesting and right on topic. I do have a hard time trying to figure out exactly how to fill in the info and if you want lens mm in 35mm format. A more detailed walk through would be fantastic. Keep it up and I'm behind you. The graphic descriptions are perfect, just slow her down.
Hi Gary, Thanks for your notes. I will slow down the next video! As for the camera specs, you can search for "focal length pixel size number of rows columns yourDrone". I found the following link which provides this info for a list of cameras. Scroll down to the bottom of the page: www.mapsmadeeasy.com/point_estimator.
The speech seems to be made from an animation app and is by far too fast to keep up with. I had to slow it to .75 to halfway keep up
You're right about the speed. I wanted to have my first video in the subject as short as possible to gauge interested! If I see many subscribers or interests, I can create a longer version. Thanks for the feedback
thanks very much for this. Immediately subscribed!!!
Awesome, thank you!
@@mmorgan hello there, may i know (if u have the info) the camera setting for dji mini 2 and if by any chance on how to configure the drone not to stop for 1 second to take image? Thanks.
Hi GabanX By searching the web, it seems that Mavic Mini 2 has a Focal Length of 4.49 mm & Pixel size of 2.0 um. Note that these are approximate values for the planning process and to give you a better approximation about the footprint. If you plan to take photos at 16:9 aspect ratio, use: #PixAlong 2250 #PixAcros 4000 For 4:3 aspect ratio use: #PixAlong 3000 #PixAcros 4000 For the one second pause before taking each photo, I believe I read it somewhere while building the tool. Perhaps it's meant to keep the camera steady/not moving before taking the photo. If you want to change that, edit the downloaded csv file (e.g. Project_0001_2D_Photo.csv or Project_0001_3D_Photo.csv), and replace instances of 1000 by a smaller number such as 500. That will change the wait time from 1000 milliseconds (one second) to 500 milliseconds (0.5 second) I can attempt to make the wait time a parameter in the planning dialog Regards,