Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.21 KB | None | 0 0
  1. root@8347ca8a4551:~/.local/share/QGIS/QGIS3/profiles/default/python/plugins# tree
  2. .
  3. ├── estimap_recreation
  4. │   ├── Makefile
  5. │   ├── README.html
  6. │   ├── README.txt
  7. │   ├── __init__.py
  8. │   ├── __pycache__
  9. │   │   ├── __init__.cpython-36.pyc
  10. │   │   ├── estimap_recreation.cpython-36.pyc
  11. │   │   └── estimap_recreation_provider.cpython-36.pyc
  12. │   ├── description
  13. │   │   └── r.estimap.recreation.txt
  14. │   ├── estimap_recreation.py
  15. │   ├── estimap_recreation_provider.py
  16. │   ├── help
  17. │   │   ├── Makefile
  18. │   │   ├── make.bat
  19. │   │   └── source
  20. │   │   ├── conf.py
  21. │   │   └── index.rst
  22. │   ├── i18n
  23. │   │   └── af.ts
  24. │   ├── images
  25. │   │   ├── r.estimap.recreation.1.png
  26. │   │   ├── r.estimap.recreation.2.png
  27. │   │   └── r.estimap.recreation.3.png
  28. │   ├── metadata.txt
  29. │   ├── pb_tool.cfg
  30. │   ├── plugin_upload.py
  31. │   ├── pylintrc
  32. │   ├── scripts
  33. │   │   ├── compile-strings.sh
  34. │   │   ├── run-env-linux.sh
  35. │   │   └── update-strings.sh
  36. │   └── test
  37. │   ├── __init__.py
  38. │   ├── qgis_interface.py
  39. │   ├── tenbytenraster.asc
  40. │   ├── tenbytenraster.asc.aux.xml
  41. │   ├── tenbytenraster.keywords
  42. │   ├── tenbytenraster.lic
  43. │   ├── tenbytenraster.prj
  44. │   ├── tenbytenraster.qml
  45. │   ├── test_init.py
  46. │   ├── test_qgis_environment.py
  47. │   ├── test_translations.py
  48. │   └── utilities.py
  49. └── shapetools
  50. ├── __init__.py
  51. ├── __pycache__
  52. │   ├── __init__.cpython-36.pyc
  53. │   ├── azDigitizer.cpython-36.pyc
  54. │   ├── createArc.cpython-36.pyc
  55. │   ├── createDonut.cpython-36.pyc
  56. │   ├── createEllipse.cpython-36.pyc
  57. │   ├── createEpicycloid.cpython-36.pyc
  58. │   ├── createHeart.cpython-36.pyc
  59. │   ├── createHypocycloid.cpython-36.pyc
  60. │   ├── createLob.cpython-36.pyc
  61. │   ├── createPie.cpython-36.pyc
  62. │   ├── createPolyfoil.cpython-36.pyc
  63. │   ├── createPolygon.cpython-36.pyc
  64. │   ├── createRose.cpython-36.pyc
  65. │   ├── createStar.cpython-36.pyc
  66. │   ├── geodesicDensify.cpython-36.pyc
  67. │   ├── geodesicFlip.cpython-36.pyc
  68. │   ├── geodesicLayerMeasure.cpython-36.pyc
  69. │   ├── geodesicMeasureTool.cpython-36.pyc
  70. │   ├── geodesicTransformation.cpython-36.pyc
  71. │   ├── idlbreakline.cpython-36.pyc
  72. │   ├── lineDigitizer.cpython-36.pyc
  73. │   ├── provider.cpython-36.pyc
  74. │   ├── settings.cpython-36.pyc
  75. │   ├── shapeTools.cpython-36.pyc
  76. │   ├── utils.cpython-36.pyc
  77. │   └── xyToLine.cpython-36.pyc
  78. ├── azDigitizer.py
  79. ├── createArc.py
  80. ├── createDonut.py
  81. ├── createEllipse.py
  82. ├── createEpicycloid.py
  83. ├── createHeart.py
  84. ├── createHypocycloid.py
  85. ├── createLob.py
  86. ├── createPie.py
  87. ├── createPolyfoil.py
  88. ├── createPolygon.py
  89. ├── createRose.py
  90. ├── createStar.py
  91. ├── doc
  92. │   ├── GeodesicBreakLineAlgorithm.help
  93. │   ├── GeodesicDensifyAlgorithm.help
  94. │   ├── GeodesicTransformationsAlgorithm.help
  95. │   ├── XYtoLineAlgorithm.help
  96. │   ├── az-sequence.jpg
  97. │   ├── azimuth-distance.jpg
  98. │   ├── breaklines.jpg
  99. │   ├── ellipse.jpg
  100. │   ├── examples.png
  101. │   ├── fliptool.jpg
  102. │   ├── geodesiclinebreak.jpg
  103. │   ├── geodesicmeasure.jpg
  104. │   ├── geodesicmeasure2.jpg
  105. │   ├── geodesicmeasure3.jpg
  106. │   ├── geodesicpolygon.jpg
  107. │   ├── geodesicshape.jpg
  108. │   ├── geodesictransform.jpg
  109. │   ├── measure-polygon.jpg
  110. │   ├── measurement-attributes.jpg
  111. │   ├── measurement-layer.jpg
  112. │   ├── menu-shapes.jpg
  113. │   ├── processing-shapes.jpg
  114. │   ├── processing.jpg
  115. │   ├── settings.jpg
  116. │   └── xytoline.jpg
  117. ├── ext-libs
  118. │   └── geographiclib
  119. │   ├── __init__.py
  120. │   ├── __pycache__
  121. │   │   ├── __init__.cpython-36.pyc
  122. │   │   ├── constants.cpython-36.pyc
  123. │   │   ├── geodesic.cpython-36.pyc
  124. │   │   ├── geodesiccapability.cpython-36.pyc
  125. │   │   └── geomath.cpython-36.pyc
  126. │   ├── accumulator.py
  127. │   ├── constants.py
  128. │   ├── geodesic.py
  129. │   ├── geodesiccapability.py
  130. │   ├── geodesicline.py
  131. │   ├── geomath.py
  132. │   ├── polygonarea.py
  133. │   └── test
  134. │   ├── __init__.py
  135. │   └── test_geodesic.py
  136. ├── geodesicDensify.py
  137. ├── geodesicFlip.py
  138. ├── geodesicLayerMeasure.py
  139. ├── geodesicMeasureTool.py
  140. ├── geodesicTransformation.py
  141. ├── idlbreakline.py
  142. ├── images
  143. │   ├── arc.png
  144. │   ├── dazdigitize.png
  145. │   ├── donut.png
  146. │   ├── ellipse.png
  147. │   ├── epicycloid.png
  148. │   ├── flip.png
  149. │   ├── flipHorizontal.png
  150. │   ├── flipVertical.png
  151. │   ├── geodesicDensifier.png
  152. │   ├── heart.png
  153. │   ├── help.png
  154. │   ├── hypocycloid.png
  155. │   ├── idlbreak.png
  156. │   ├── line.png
  157. │   ├── linedigitize.png
  158. │   ├── measure.png
  159. │   ├── measureLine.png
  160. │   ├── pie.png
  161. │   ├── polyfoil.png
  162. │   ├── polygon.png
  163. │   ├── rose.png
  164. │   ├── rotate180.png
  165. │   ├── rotateccw.png
  166. │   ├── rotatecw.png
  167. │   ├── settings.png
  168. │   ├── shapes.png
  169. │   ├── star.png
  170. │   ├── transformShape.png
  171. │   └── xyline.png
  172. ├── index.html
  173. ├── lineDigitizer.py
  174. ├── metadata.txt
  175. ├── provider.py
  176. ├── settings.py
  177. ├── shapeTools.py
  178. ├── ui
  179. │   ├── azDistDigitizer.ui
  180. │   ├── geodesicMeasureDialog.ui
  181. │   ├── lineDigitizer.ui
  182. │   ├── settings.ui
  183. │   └── vector2Shape.ui
  184. ├── utils.py
  185. └── xyToLine.py
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement