ok.
what do you expect from the state reps?
sorry for the late response...working all day.
Not in Northern Virginia. We are halfway up the the east coast of Virginia, 1 1/2 hours east of Richmond, on the peninsula that extends into the Chesapeake Bay bounded by the Potomac River to the north and the Rappahannock River to the south.Where in Va is that?
I'm interested in training. I live in northeast Georgia, Gainesville. I was going to wait for the closer meet up in June, but would try to make the 2 hour drive to Mentone if different aspects of the training are covered in each session. RCdancer, what are your thoughts?
Might be able to use python to parse the information over to the CSV file if you want to pm me and I will give you my phone number and email maybe we can put our heads together and see what we can come up withI'd be perfectly happy to give it away, but it currently runs in a somewhat esoteric programming language that is part of the scientific data analysis package that I use. I can port the waypoint generation part to Excel or similar, but automatic generation of the CSV file that Litchi imports is trickier. I was pretty sure that someone else must have written a more user-friendly application, but I haven't found one.
Might be able to use python to parse the information over to the CSV file if you want to pm me and I will give you my phone number and email maybe we can put our heads together and see what we can come up with
The code generating the grid is almost completely trivial, but I still don't have it working in Excel - primarily because of the dynamic number of waypoints. I haven't put much work into that though. The Igor Pro programming language is fairly transparent so if you are interested - this is the main function, with inputs defining start point, grid bearing, width and length, height AGL, grid pitch and interval, handedness and speed, which in Igor are via a GUI. It creates a fully-specified CSV that imports directly into Litchi as a complete mission.
Function createGrid()Variable /G lat0, long0, heading, length, width, dl, dw, turn, alt, speed // turn: 1 - grid goes rigth, -1 - grid goes leftVariable /G theta, pointsvariable /G radius = 6371e3 // Mean earth radius in metersInt nl, nw, nt, i, j, ptKillWindow /Z Output_mKillWindow /Z Output_degKillWindow /Z OutputKillWaves/A/Znl = ceil(length/dl) + 1 // number of points lengthwisenw = ceil(width/dw) + 1 // number of points widthwisent = nl * nw + 1points = ntMake /O /N=(nt) mE, mN, lat, long, latitude,longitude,'altitude(m)','heading(deg)','curvesize(m)',rotationdir,gimbalmode,gimbalpitchangle,actiontype1,actionparam1,actiontype2,actionparam2Make /O /N=(nt) actiontype3,actionparam3,actiontype4,actionparam4,actiontype5,actionparam5,actiontype6,actionparam6,actiontype7,actionparam7,actiontype8,actionparam8,actiontype9,actionparam9Make /O /N=(nt) actiontype10,actionparam10,actiontype11,actionparam11,actiontype12,actionparam12,actiontype13,actionparam13,actiontype14,actionparam14,actiontype15,actionparam15,altitudemodeMake /O /N=(nt) 'speed(m/s)',poi_latitude,poi_longitude,'poi_altitude(m)',poi_altitudemode'altitude(m)' = alt'heading(deg)' = heading'curvesize(m)' = 0rotationdir = 0gimbalmode = 0gimbalpitchangle = 0actiontype1 = -1 // 1 = take photo, -1 = no photoactionparam1 = 0actiontype2 = -1actionparam2 = 0actiontype3 = -1actionparam3 = 0actiontype4 = -1actionparam4 = 0actiontype5 = -1actionparam5 = 0actiontype6 = -1actiontype7 = -1actionparam7 = 0actiontype8 = -1actionparam8 = 0actiontype9 = -1actionparam9 = 0actiontype10 = -1actionparam10 = 0actiontype11 = -1actionparam11 = 0actiontype12 = -1actionparam12 = 0actiontype13 = -1actionparam13 = 0actiontype14 = -1actionparam14 = 0actiontype15 = -1actionparam15 = 0altitudemode = 1'speed(m/s)' = speedpoi_latitude = 0poi_longitude = 0poi_longitude = 0'poi_altitude(m)' = 0poi_altitudemode = 0theta = heading*pi/180// First waypoint offset by 100 m and is intended to be moved to // the launch point before starting the mission in order to set the// altitude reference.mE[0] = 0 - 100*(sin(theta)/2 + sin(theta + turn*pi/2)/2)mN[0] = 0 - 100*(cos(theta)/2 + cos(theta + turn*pi/2)/2)mE[1] = 0 mN[1] = 0i = 3 // waypoint numberj = 1 // length indexdo // i loopj = 1do // j loop forwardsmE[i-1] = mE[i-2] + dl*sin(theta)mN[i-1] = mN[i-2] + dl*cos(theta)i += 1j += 1while (j < nl)if (i < nt)mE[i-1] = mE[i-2] + dw*sin(theta + turn*pi/2)mN[i-1] = mN[i-2] + dw*cos(theta + turn*pi/2)i += 1endifj = 1if (i < nt)do // j loop backwardsmE[i-1] = mE[i-2] - dl*sin(theta)mN[i-1] = mN[i-2] - dl*cos(theta)i += 1j += 1while (j < nl)endifif (i < nt)mE[i-1] = mE[i-2] + dw*sin(theta + turn*pi/2)mN[i-1] = mN[i-2] + dw*cos(theta + turn*pi/2)i += 1endifwhile (i < nt)lat[0] = lat0*pi/180 + (mN[0])/radiuslong[0] = long0*pi/180 + (mE[0])/(radius*cos(lat[0]))pt = 1dolat[pt] = lat[pt-1] + (mN[pt] - mN[pt-1])/radiuslong[pt] = long[pt-1] + (mE[pt] - mE[pt-1])/(radius*cos(lat[pt]))pt += 1while (pt < nt)latitude = lat*180/pilongitude = long*180/piExecute "Output()"Execute "Output_m()"Execute "Output_deg()"savetablecopy /T=2 /W = OutputEndAn example resulting grid for a 500 m x 500 m left box at 312° at looks like this:
View attachment 61984
Or in lat/long:
View attachment 61985
The csv outputs as: cañada_bonita.txt
And the final grid looks like this:
View attachment 61987
Nice work. Can I ask you a few quick questions?The code generating the grid is almost completely trivial, but I still don't have it working in Excel - primarily because of the dynamic number of waypoints. I haven't put much work into that though. The Igor Pro programming language is fairly transparent so if you are interested - this is the main function, with inputs defining start point, grid bearing, width and length, height AGL, grid pitch and interval, handedness and speed, which in Igor are via a GUI. It creates a fully-specified CSV that imports directly into Litchi as a complete mission.
Function createGrid()Variable /G lat0, long0, heading, length, width, dl, dw, turn, alt, speed // turn: 1 - grid goes rigth, -1 - grid goes leftVariable /G theta, pointsvariable /G radius = 6371e3 // Mean earth radius in metersInt nl, nw, nt, i, j, ptKillWindow /Z Output_mKillWindow /Z Output_degKillWindow /Z OutputKillWaves/A/Znl = ceil(length/dl) + 1 // number of points lengthwisenw = ceil(width/dw) + 1 // number of points widthwisent = nl * nw + 1points = ntMake /O /N=(nt) mE, mN, lat, long, latitude,longitude,'altitude(m)','heading(deg)','curvesize(m)',rotationdir,gimbalmode,gimbalpitchangle,actiontype1,actionparam1,actiontype2,actionparam2Make /O /N=(nt) actiontype3,actionparam3,actiontype4,actionparam4,actiontype5,actionparam5,actiontype6,actionparam6,actiontype7,actionparam7,actiontype8,actionparam8,actiontype9,actionparam9Make /O /N=(nt) actiontype10,actionparam10,actiontype11,actionparam11,actiontype12,actionparam12,actiontype13,actionparam13,actiontype14,actionparam14,actiontype15,actionparam15,altitudemodeMake /O /N=(nt) 'speed(m/s)',poi_latitude,poi_longitude,'poi_altitude(m)',poi_altitudemode'altitude(m)' = alt'heading(deg)' = heading'curvesize(m)' = 0rotationdir = 0gimbalmode = 0gimbalpitchangle = 0actiontype1 = -1 // 1 = take photo, -1 = no photoactionparam1 = 0actiontype2 = -1actionparam2 = 0actiontype3 = -1actionparam3 = 0actiontype4 = -1actionparam4 = 0actiontype5 = -1actionparam5 = 0actiontype6 = -1actiontype7 = -1actionparam7 = 0actiontype8 = -1actionparam8 = 0actiontype9 = -1actionparam9 = 0actiontype10 = -1actionparam10 = 0actiontype11 = -1actionparam11 = 0actiontype12 = -1actionparam12 = 0actiontype13 = -1actionparam13 = 0actiontype14 = -1actionparam14 = 0actiontype15 = -1actionparam15 = 0altitudemode = 1'speed(m/s)' = speedpoi_latitude = 0poi_longitude = 0poi_longitude = 0'poi_altitude(m)' = 0poi_altitudemode = 0theta = heading*pi/180// First waypoint offset by 100 m and is intended to be moved to // the launch point before starting the mission in order to set the// altitude reference.mE[0] = 0 - 100*(sin(theta)/2 + sin(theta + turn*pi/2)/2)mN[0] = 0 - 100*(cos(theta)/2 + cos(theta + turn*pi/2)/2)mE[1] = 0 mN[1] = 0i = 3 // waypoint numberj = 1 // length indexdo // i loopj = 1do // j loop forwardsmE[i-1] = mE[i-2] + dl*sin(theta)mN[i-1] = mN[i-2] + dl*cos(theta)i += 1j += 1while (j < nl)if (i < nt)mE[i-1] = mE[i-2] + dw*sin(theta + turn*pi/2)mN[i-1] = mN[i-2] + dw*cos(theta + turn*pi/2)i += 1endifj = 1if (i < nt)do // j loop backwardsmE[i-1] = mE[i-2] - dl*sin(theta)mN[i-1] = mN[i-2] - dl*cos(theta)i += 1j += 1while (j < nl)endifif (i < nt)mE[i-1] = mE[i-2] + dw*sin(theta + turn*pi/2)mN[i-1] = mN[i-2] + dw*cos(theta + turn*pi/2)i += 1endifwhile (i < nt)lat[0] = lat0*pi/180 + (mN[0])/radiuslong[0] = long0*pi/180 + (mE[0])/(radius*cos(lat[0]))pt = 1dolat[pt] = lat[pt-1] + (mN[pt] - mN[pt-1])/radiuslong[pt] = long[pt-1] + (mE[pt] - mE[pt-1])/(radius*cos(lat[pt]))pt += 1while (pt < nt)latitude = lat*180/pilongitude = long*180/piExecute "Output()"Execute "Output_m()"Execute "Output_deg()"savetablecopy /T=2 /W = OutputEndAn example resulting grid for a 500 m x 500 m left box at 312° at looks like this:
View attachment 61984
Or in lat/long:
View attachment 61985
The csv outputs as: cañada_bonita.txt
And the final grid looks like this:
View attachment 61987
Nice work. Can I ask you a few quick questions?
I see that your terrain starts at a higher elevation and then the last waypoint is at a lower elevation. Do you pre fly this plan and then set the way points? Litchi is a great app however it's dumb when it comes to knowing it's AGL. Doesn't it use the starting ground elevation as 0? How can a pilot take that into consideration when flying a mission?
Do you think it's a good idea to fly a cross hatch pattern? I have set a few missions up to do ovular legs such as yours but then I go over the mission again like a checker board.
Do you think it's a good idea to fly a cross hatch pattern? I have set a few missions up to do ovular legs such as yours but then I go over the mission again like a checker board.
starting at the far point is less likely to trigger smart RTH.
We use essential cookies to make this site work, and optional cookies to enhance your experience.