DJI Mavic, Air and Mini Drones
Friendly, Helpful & Knowledgeable Community
Join Us Now

Recent content by PilotNovel

  1. P

    Plot the track of a DJI Drone using CSV

    Yeah I used CsvView to display both .txt and .dat files. Isn't it right?
  2. P

    Infos about .dat file and correlation between csv and .dat MAVIC AIR 2

    Thank you for both answers. Actually I made a very basic python script where I split the initial .dat file according to the following rules: 1) I check where the first value of motor is not 0 (meaning it starts - .txt file should start recording here) 2) I record all the rows 3) I stop recording...
  3. P

    Infos about .dat file and correlation between csv and .dat MAVIC AIR 2

    And another very important question is: are OSD.pitch, OSD.roll and OSD.yaw measured in degree? If so.. are they calculated according the "normal" position that is the following one?
  4. P

    Infos about .dat file and correlation between csv and .dat MAVIC AIR 2

    I processed both files with CsvView. Actually I thought to have the same number of rows into both txt and dat csv but this not happen. DAT one has more rows than .txt... In particualr I'm using the DAT of the DJI Application, the one into the MCDatFlightRecords folder. For what I get, the other...
  5. P

    Infos about .dat file and correlation between csv and .dat MAVIC AIR 2

    I would like to join the Rotors' values with the e .txt files. I need for some (maybe useless) purposes. However I need also the other features presented in the .txt files
  6. P

    Infos about .dat file and correlation between csv and .dat MAVIC AIR 2

    Thank you for the answer, all answers are useful! I will check it then. What about to join "raw data" from .dat file togerther with .txt files? Any suggestion? It would be very very very awesome to know it.
  7. P

    Infos about .dat file and correlation between csv and .dat MAVIC AIR 2

    I was looking at .dat file and I did a query (searching for VelN) and I got these columns-> ['IMU_ATTI(0):velN', 'IMUCalcs(0):velN:C', 'IMUCalcs(0):diffVelN:C', 'IMU_ATTI(1):velN', 'IMUCalcs(1):velN:C', 'IMUCalcs(1):diffVelN:C'] But only IMU_ATTI(0):velN and IMU_ATTI(1):velN have number values...
  8. P

    Plot the track of a DJI Drone using CSV

    Another question about csv and the correlation between .dat and .txt files. How can I merge the data together (flight by flight)? I was thinking with timestamp but the .dat file only has "clock". Any suggesion is very useful! Thank you
  9. P

    Plot the track of a DJI Drone using CSV

    Ok I got it, thank you so much! Instead regarding last question which is: I was looking at .dat file and I did a query (VelN) and I got these columns-> ['IMU_ATTI(0):velN', 'IMUCalcs(0):velN:C', 'IMUCalcs(0):diffVelN:C', 'IMU_ATTI(1):velN', 'IMUCalcs(1):velN:C', 'IMUCalcs(1):diffVelN:C'] But...
  10. P

    Plot the track of a DJI Drone using CSV

    Good morning to everyone, I looked at xSpeed and a I was wondering: Why Don't I have positive values?? This is xSpeed_[MPH] column. So If I wanna to compute the velocity along the north/south is it better to use .dat features instead of the txt ones??? df['xSpeed_[MPH]'] 0.0 0.0 0.0 0.0 0.0 0.0...
  11. P

    Plot the track of a DJI Drone using CSV

    You are literally Right! I don't know why it showed me on splitted lines, probably I pressed some keys unintentionally. I try to split the complete .dat file into single flights. Hope to find motors' speed equal to 0 in that case it would be easy to split the entire dataset! Thank you so much
  12. P

    Plot the track of a DJI Drone using CSV

    Thank you so much. I was not so clear: Is it also possible to export the values of motors? Or are they calculated using indirect formulas? Because into these csv I dont see any kind of Frequency of the motors but I see these following headers...
  13. P

    Plot the track of a DJI Drone using CSV

    Good morning, Any suggestion? Moreover.. is possible to transform the graph of values' sensors into a csv file?
  14. P

    Plot the track of a DJI Drone using CSV

    Does someone have any useful infos? Thank you in advance
  15. P

    Plot the track of a DJI Drone using CSV

    Maybe I discovered a good thing: I was checking the time of .dat and it corresponds to the 5th fligh txt. After that there are 28 flights (.txt) as the "hills" in the .dat. Could be they associate??? Is it possible to associate these values to each timestamp of the related txt file?? In other...