mapillary-tools 0.12.0__py3-none-any.whl → 0.13.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. mapillary_tools/__init__.py +1 -1
  2. mapillary_tools/api_v4.py +94 -11
  3. mapillary_tools/{geotag → camm}/camm_builder.py +122 -62
  4. mapillary_tools/{geotag → camm}/camm_parser.py +120 -84
  5. mapillary_tools/commands/__init__.py +0 -1
  6. mapillary_tools/commands/__main__.py +0 -6
  7. mapillary_tools/commands/process.py +0 -50
  8. mapillary_tools/commands/upload.py +1 -26
  9. mapillary_tools/constants.py +2 -2
  10. mapillary_tools/exiftool_read_video.py +13 -11
  11. mapillary_tools/ffmpeg.py +2 -2
  12. mapillary_tools/geo.py +0 -54
  13. mapillary_tools/geotag/blackvue_parser.py +4 -4
  14. mapillary_tools/geotag/geotag_images_from_exif.py +2 -1
  15. mapillary_tools/geotag/geotag_images_from_exiftool_both_image_and_video.py +0 -1
  16. mapillary_tools/geotag/geotag_videos_from_exiftool_video.py +5 -3
  17. mapillary_tools/geotag/geotag_videos_from_video.py +13 -14
  18. mapillary_tools/geotag/gpmf_gps_filter.py +9 -10
  19. mapillary_tools/geotag/gpmf_parser.py +318 -78
  20. mapillary_tools/mp4/__init__.py +0 -0
  21. mapillary_tools/{geotag → mp4}/construct_mp4_parser.py +32 -16
  22. mapillary_tools/mp4/mp4_sample_parser.py +322 -0
  23. mapillary_tools/{geotag → mp4}/simple_mp4_builder.py +64 -38
  24. mapillary_tools/process_geotag_properties.py +25 -19
  25. mapillary_tools/process_sequence_properties.py +6 -6
  26. mapillary_tools/sample_video.py +17 -16
  27. mapillary_tools/telemetry.py +59 -0
  28. mapillary_tools/types.py +18 -0
  29. mapillary_tools/upload.py +75 -233
  30. mapillary_tools/upload_api_v4.py +8 -16
  31. mapillary_tools/utils.py +9 -16
  32. mapillary_tools/video_data_extraction/cli_options.py +0 -1
  33. mapillary_tools/video_data_extraction/extract_video_data.py +13 -31
  34. mapillary_tools/video_data_extraction/extractors/base_parser.py +13 -11
  35. mapillary_tools/video_data_extraction/extractors/blackvue_parser.py +5 -4
  36. mapillary_tools/video_data_extraction/extractors/camm_parser.py +7 -6
  37. mapillary_tools/video_data_extraction/extractors/exiftool_runtime_parser.py +4 -9
  38. mapillary_tools/video_data_extraction/extractors/exiftool_xml_parser.py +9 -11
  39. mapillary_tools/video_data_extraction/extractors/generic_video_parser.py +6 -11
  40. mapillary_tools/video_data_extraction/extractors/gopro_parser.py +11 -4
  41. mapillary_tools/video_data_extraction/extractors/gpx_parser.py +54 -12
  42. mapillary_tools/video_data_extraction/extractors/nmea_parser.py +3 -3
  43. mapillary_tools/video_data_extraction/video_data_parser_factory.py +13 -20
  44. {mapillary_tools-0.12.0.dist-info → mapillary_tools-0.13.0.dist-info}/METADATA +11 -4
  45. mapillary_tools-0.13.0.dist-info/RECORD +75 -0
  46. {mapillary_tools-0.12.0.dist-info → mapillary_tools-0.13.0.dist-info}/WHEEL +1 -1
  47. mapillary_tools/commands/upload_blackvue.py +0 -33
  48. mapillary_tools/commands/upload_camm.py +0 -33
  49. mapillary_tools/commands/upload_zip.py +0 -33
  50. mapillary_tools/geotag/mp4_sample_parser.py +0 -426
  51. mapillary_tools/process_import_meta_properties.py +0 -76
  52. mapillary_tools-0.12.0.dist-info/RECORD +0 -77
  53. /mapillary_tools/{geotag → mp4}/io_utils.py +0 -0
  54. /mapillary_tools/{geotag → mp4}/simple_mp4_parser.py +0 -0
  55. {mapillary_tools-0.12.0.dist-info → mapillary_tools-0.13.0.dist-info}/LICENSE +0 -0
  56. {mapillary_tools-0.12.0.dist-info → mapillary_tools-0.13.0.dist-info}/entry_points.txt +0 -0
  57. {mapillary_tools-0.12.0.dist-info → mapillary_tools-0.13.0.dist-info}/top_level.txt +0 -0
@@ -1,77 +0,0 @@
1
- mapillary_tools/__init__.py,sha256=oFXJ29j3C1ptyR4srl_tl-0-F7jzcbzJxfN7qHOHwv0,19
2
- mapillary_tools/api_v4.py,sha256=C_Dha0HYIicWB9oMx4Z-ova-aooByCGvcNciuXNJl1Q,2024
3
- mapillary_tools/authenticate.py,sha256=LCFcs6LqZmXaYkTUEKgGfmqytWdh5v_L3KXB48ojOZ4,3090
4
- mapillary_tools/config.py,sha256=jCjaK4jJaTY4AV4qf_b_tcxn5LA_uPsEWlGIdm2zw6g,2103
5
- mapillary_tools/constants.py,sha256=q5-4LG35aIrdUTaBh8v5WDGVR4o4fHYPCv0WFnKJLLg,2450
6
- mapillary_tools/exceptions.py,sha256=Mh1tgVEFTSMnYEzrl9x7b95fW9Z3SPVD_YMEl7r8I0I,2693
7
- mapillary_tools/exif_read.py,sha256=F60A0-T8XSBHvFKgVIrUz_ZWKQrTFWrtj3c6siB0IMg,28707
8
- mapillary_tools/exif_write.py,sha256=3PawLnBOY8Z86TYiA_F4LxRhe5Ui6CTNhxYm9yeJNX8,8786
9
- mapillary_tools/exiftool_read.py,sha256=Mg027me1IzblKb9IyGaLgU6goFqk_QiOt0Ppq-CeECg,16288
10
- mapillary_tools/exiftool_read_video.py,sha256=BA4Mo0rdC-mM9jIAtFQbNJ2v4TkDqDiZzKfh5DcnwDE,14430
11
- mapillary_tools/ffmpeg.py,sha256=M56MrJSbwf5SJs15KwHZC8moxjx6SrB6gM0h-JMPq1U,15788
12
- mapillary_tools/geo.py,sha256=yAopdbA20R9RpG6hfyrXo6qP09Xpb915f8-BtYAgoiA,11211
13
- mapillary_tools/history.py,sha256=l2z3YdYRyBGEOvcqcLExTV-0LUAX3iBq2OdBzLNMHLM,1766
14
- mapillary_tools/ipc.py,sha256=DwWQb9hNshx0bg0Fo5NjY0mXjs-FkbR6tIQmjMgMtmg,1089
15
- mapillary_tools/process_geotag_properties.py,sha256=39gpT96Rzfu9hH1uGKDsYrFR8MLU1PNX_ytdlsL7yvI,22813
16
- mapillary_tools/process_import_meta_properties.py,sha256=pEqUp1pLzSNUoSEkxRGk1RVTtkE7FMagPo-yEagS3bk,2166
17
- mapillary_tools/process_sequence_properties.py,sha256=PLCSYJDNwr3rpUfh8kLNtUrUozYbRByR1g3xh3GCVCY,11559
18
- mapillary_tools/sample_video.py,sha256=3zji4zHt4hT_iWP0sV1XpNikFLfC-OGpk_p1NpSMPec,14385
19
- mapillary_tools/types.py,sha256=wNdb516UR039voIMN8_MtNPEyLWgzCb8dGj-nR74Pds,21490
20
- mapillary_tools/upload.py,sha256=Lm7juEYnMmpDLarTU-QGoxMvet1sS3eM3PqTE956LnY,29727
21
- mapillary_tools/upload_api_v4.py,sha256=nH9ddIebWxIr3g7x41XfmXw07cvmIJxCXOmJTfi-FZ4,8951
22
- mapillary_tools/uploader.py,sha256=VieDKi51wdXTIhN7x_mcuQeHESUyFlF5cgB-TAnF4g0,14093
23
- mapillary_tools/utils.py,sha256=eg0TdJNjOJSYMB0NCxzOzDAbQc67NFOT919ZJxvSNRs,6257
24
- mapillary_tools/commands/__init__.py,sha256=wz89o8syKkWwoOCp3WBgnFWc41TBQRzRi62TlOTmVNQ,188
25
- mapillary_tools/commands/__main__.py,sha256=m9MRLyQJfgiki3eRBaagWUwNBKEbEiYtAaf2K3JsQmM,4940
26
- mapillary_tools/commands/authenticate.py,sha256=4aVvAQal_mqtm2NEMBt5aKLahi0iRdO8b7WSBf6jokA,1136
27
- mapillary_tools/commands/process.py,sha256=PyfIcpsS7vnLElr02ol1sQ_9Ma6J6uLusIuiyrAiF-c,12808
28
- mapillary_tools/commands/process_and_upload.py,sha256=osJv1TVHYAG5E-EsA0nB1F3RkKXMadLR2t1EGK0Ifqw,654
29
- mapillary_tools/commands/sample_video.py,sha256=bTJmlDsajkC-QJ_ZO_scdD4R664zs-r_dh-x2PlOgyY,3281
30
- mapillary_tools/commands/upload.py,sha256=GyLJ0wa2OO6fxr-8MoEelZsb2sOv3B2B2OhYtwFjzQc,2663
31
- mapillary_tools/commands/upload_blackvue.py,sha256=9RbCbz0-BquOIcp5JycnVbIAPUIqctwAm50LcLZw3N8,923
32
- mapillary_tools/commands/upload_camm.py,sha256=2zlBkZYbR2Hi4P02cHtBIymrqkudn5RrhFWwsCG7lG8,907
33
- mapillary_tools/commands/upload_zip.py,sha256=p8EZZktXLm8IipAbxrmz7E0RcfcLcxeGhEtxZzq5rSw,897
34
- mapillary_tools/commands/video_process.py,sha256=-wQeeIwWXPmy81HQHam5A0huMLRHknkEFa_V1OwElU4,890
35
- mapillary_tools/commands/video_process_and_upload.py,sha256=llV0dHBS31qPZp-Fs1GCM0yYezEA_VF_tfYcp-Z8NkY,701
36
- mapillary_tools/commands/zip.py,sha256=DVQuMLpbstwiy5o4pU_fBvM6eORuFjLeySd80AhHKU0,991
37
- mapillary_tools/geotag/__init__.py,sha256=ohud7lLsqO1b9ddCF0SjrNOcUcRdQzNVR43RkcVVLAc,33
38
- mapillary_tools/geotag/blackvue_parser.py,sha256=1yrIs9Hp_-tNrClLQn2gxzCVWpkWTa6OlpLXgI4it70,2983
39
- mapillary_tools/geotag/camm_builder.py,sha256=AgY-LuuZy2w0Ni_GKI7Z_39Q19BfcghzfuHa5CSOK8o,8224
40
- mapillary_tools/geotag/camm_parser.py,sha256=zRQcPNgD_oibLp06aW_cwk4H3MvWqHDg-RiKVFiftTA,8830
41
- mapillary_tools/geotag/construct_mp4_parser.py,sha256=waaJl1wtQ2gbd6nIl9dj3V2nxiPYOn7bU8vopYeIWwE,16713
42
- mapillary_tools/geotag/geotag_from_generic.py,sha256=bCYfIbkv4qIlkKttAjSGl9t4i_QAtzIiCZoth1hMVI4,480
43
- mapillary_tools/geotag/geotag_images_from_exif.py,sha256=Wslwj3oNJdJjpSPV5JZ_aHEGF8O62LNQO7CBPczBOs0,4762
44
- mapillary_tools/geotag/geotag_images_from_exiftool.py,sha256=a-c4H8VIyPdJkfUIvJho0phR0QU0zN8-lSyiCz0wc4s,3981
45
- mapillary_tools/geotag/geotag_images_from_exiftool_both_image_and_video.py,sha256=GbNtPxE-FanzrPUI3FS-dadT5d0lyH_AcAAr4H6GL-o,3386
46
- mapillary_tools/geotag/geotag_images_from_gpx.py,sha256=S9Pw6FvP5kRSpHUnKUYKXmw0CHa9V92UmrS_MJfbjS4,9053
47
- mapillary_tools/geotag/geotag_images_from_gpx_file.py,sha256=zEbC0kVf_iw9ioIyJLL-gYN_QvAOEdAoEczCBkizl38,5122
48
- mapillary_tools/geotag/geotag_images_from_nmea_file.py,sha256=dDdHnJInQ_WN3ZRf-w44NSBElDLPs7XYBiimvE2iCNo,1651
49
- mapillary_tools/geotag/geotag_images_from_video.py,sha256=XsaWOFChGItl-j1UbKM4hNjUqN29pVNbMpGT_BvI-o8,3306
50
- mapillary_tools/geotag/geotag_videos_from_exiftool_video.py,sha256=5ezj-9uZszJiI9XZqW9b_XDYfX5RjlXnOyf7atCh47o,5143
51
- mapillary_tools/geotag/geotag_videos_from_video.py,sha256=HPVJqFeFDvvrFD0vfCimeaOyHHddcWlneAT0LjLUnZo,7098
52
- mapillary_tools/geotag/gpmf_gps_filter.py,sha256=7GHr05CLLF6lDGpMS3yAbZENh_vEfS0ezrfd_VFg3-c,2800
53
- mapillary_tools/geotag/gpmf_parser.py,sha256=GDV2yFhmsII4RdzbnPCQwd-Quk6NdMTJ0BcM0QH8ERU,15284
54
- mapillary_tools/geotag/gps_filter.py,sha256=4CPL8glxdzPWIbfGPPgyqMLyiZFt-djce5vhiFPuZB8,3766
55
- mapillary_tools/geotag/io_utils.py,sha256=wc3-F1TnxZjTwB7-oea5yRmRQ_0T3Zbz8oBkW9JL8d4,5454
56
- mapillary_tools/geotag/mp4_sample_parser.py,sha256=UxBqs0vFTA4qVth1ELkeBGElmW465_Vn2vKNApHmp7M,15141
57
- mapillary_tools/geotag/simple_mp4_builder.py,sha256=-0ZFe0rnFYNcRxxBLrrqytl5GPnKToUH8TPEYjZkjZs,11981
58
- mapillary_tools/geotag/simple_mp4_parser.py,sha256=eji6JZa497wK8CY8hQt21fjgtnd0nzuyBx7MPEKST74,6671
59
- mapillary_tools/geotag/utils.py,sha256=Orl35Df4ypxj4v6Lu1Mhk9d2XZxa8yNffz1s1C0JZsQ,651
60
- mapillary_tools/video_data_extraction/cli_options.py,sha256=g5kqzvkGJm6f5T4Vhum4JLL5qS6vE4iagQbEPtGJcug,563
61
- mapillary_tools/video_data_extraction/extract_video_data.py,sha256=2MJk4ekb3fhRLRThCrUsPOuTvHkPzyTTMTzlnfvuGD8,6603
62
- mapillary_tools/video_data_extraction/video_data_parser_factory.py,sha256=EDl4x_M0HvE4Pgwas679w70udLgeKuz6u-4Gv1BZQgE,1539
63
- mapillary_tools/video_data_extraction/extractors/base_parser.py,sha256=qNjS4LRDekD1E2Guqb2J5XstGVV9X2eN54CDlzXQGCw,1996
64
- mapillary_tools/video_data_extraction/extractors/blackvue_parser.py,sha256=zro4SUgqnVgEIrkjDf5yb6MJKOfl6ayPrr3FLoVBWO0,1143
65
- mapillary_tools/video_data_extraction/extractors/camm_parser.py,sha256=u7Yp7CYM0zdcRlpgkHQSB72x_uL2j-_AmwnGSREJPv0,1368
66
- mapillary_tools/video_data_extraction/extractors/exiftool_runtime_parser.py,sha256=mtdsoncnsspCtt5rMET2gxcEzvyOCyNv754RNhMEUNQ,2436
67
- mapillary_tools/video_data_extraction/extractors/exiftool_xml_parser.py,sha256=unLa5uZB1N5Vtl8bk19hayphRhXzHlSKgBYjVUv1hlQ,1848
68
- mapillary_tools/video_data_extraction/extractors/generic_video_parser.py,sha256=mw_byv66za_5Mb5TrWbD5UU2Ts6mAMZqLgKB9umWGsY,1955
69
- mapillary_tools/video_data_extraction/extractors/gopro_parser.py,sha256=xNXGuR7a-oDaE_WB2xK7sDpAGFwyWIsBUC8fSMKtfgM,1214
70
- mapillary_tools/video_data_extraction/extractors/gpx_parser.py,sha256=cqNGtlWFuuxBTf5BliCuJ14avxu-8Pz5LvXnTpTum60,815
71
- mapillary_tools/video_data_extraction/extractors/nmea_parser.py,sha256=QFMw_yf4uNP8z7tTybHMKHHMG6cS92bae-MJPHq6EJk,731
72
- mapillary_tools-0.12.0.dist-info/LICENSE,sha256=l2D8cKfFmmJq_wcVq_JElPJrlvWQOzNWx7gMLINucxc,1292
73
- mapillary_tools-0.12.0.dist-info/METADATA,sha256=cE7ZnLBiJ3pBU0_I6MYddiGM3nU2povq_mnT02cS-9s,19638
74
- mapillary_tools-0.12.0.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
75
- mapillary_tools-0.12.0.dist-info/entry_points.txt,sha256=A3f3LP-BO_P-U8Y29QfpT4jx6Mjk3sXjTi2Yew4bvj8,75
76
- mapillary_tools-0.12.0.dist-info/top_level.txt,sha256=FbDkMgOrt1S70ho1WSBrOwzKOSkJFDwwqFOoY5-527s,16
77
- mapillary_tools-0.12.0.dist-info/RECORD,,
File without changes
File without changes