jupytergis-core 0.5.0__py3-none-any.whl → 0.6.1__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 (124) hide show
  1. jupytergis_core/_version.py +1 -1
  2. jupytergis_core/handler.py +301 -25
  3. jupytergis_core/schema/__init__.py +7 -7
  4. jupytergis_core/schema/interfaces/__init__.py +2 -2
  5. jupytergis_core/schema/interfaces/export/__init__.py +2 -2
  6. jupytergis_core/schema/interfaces/export/{exportGeojson.py → exportGeoJson.py} +2 -2
  7. jupytergis_core/schema/interfaces/export/{exportGeotiff.py → exportGeoTiff.py} +2 -2
  8. jupytergis_core/schema/interfaces/geojson.py +1 -1
  9. jupytergis_core/schema/interfaces/processing/__init__.py +2 -2
  10. jupytergis_core/schema/interfaces/processing/boundingBoxes.py +14 -0
  11. jupytergis_core/schema/interfaces/processing/buffer.py +1 -1
  12. jupytergis_core/schema/interfaces/processing/centroids.py +14 -0
  13. jupytergis_core/schema/interfaces/processing/concaveHull.py +21 -0
  14. jupytergis_core/schema/interfaces/processing/convexHull.py +14 -0
  15. jupytergis_core/schema/interfaces/processing/dissolve.py +1 -1
  16. jupytergis_core/schema/interfaces/project/__init__.py +2 -2
  17. jupytergis_core/schema/interfaces/project/jgis.py +2 -1
  18. jupytergis_core/schema/interfaces/project/layers/__init__.py +2 -2
  19. jupytergis_core/schema/interfaces/project/layers/heatmapLayer.py +1 -1
  20. jupytergis_core/schema/interfaces/project/layers/hillshadeLayer.py +1 -1
  21. jupytergis_core/schema/interfaces/project/layers/imageLayer.py +1 -1
  22. jupytergis_core/schema/interfaces/project/layers/{rasterlayer.py → rasterLayer.py} +2 -2
  23. jupytergis_core/schema/interfaces/project/layers/stacLayer.py +19 -0
  24. jupytergis_core/schema/interfaces/project/layers/{vectorlayer.py → vectorLayer.py} +2 -9
  25. jupytergis_core/schema/interfaces/project/layers/vectorTileLayer.py +1 -9
  26. jupytergis_core/schema/interfaces/project/layers/webGlLayer.py +2 -1
  27. jupytergis_core/schema/interfaces/project/sources/__init__.py +2 -2
  28. jupytergis_core/schema/interfaces/{geojsonsource.py → project/sources/geoJsonSource.py} +3 -3
  29. jupytergis_core/schema/interfaces/project/sources/geoTiffSource.py +1 -1
  30. jupytergis_core/schema/interfaces/project/sources/imageSource.py +1 -1
  31. jupytergis_core/schema/interfaces/project/sources/rasterDemSource.py +1 -1
  32. jupytergis_core/schema/interfaces/project/sources/{rastersource.py → rasterSource.py} +2 -2
  33. jupytergis_core/schema/interfaces/project/sources/shapefileSource.py +1 -1
  34. jupytergis_core/schema/interfaces/project/sources/{vectortilesource.py → vectorTileSource.py} +2 -2
  35. jupytergis_core/schema/interfaces/project/sources/videoSource.py +1 -1
  36. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/package.json +4 -4
  37. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/schemas/@jupytergis/jupytergis-core/package.json.orig +3 -3
  38. jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/27.aea9e291ba3dd16790fb.js → jupytergis_core-0.6.1.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/27.6ee794baeb00791424c2.js +2 -2
  39. jupytergis_core-0.6.1.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/397.60274eedc66443d2b6fc.js +1 -0
  40. jupytergis_core-0.6.1.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/432.b81aa01fd224321ff376.js +1 -0
  41. jupytergis_core-0.6.1.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/552.0936beb209d3ea5a1229.js +1 -0
  42. jupytergis_core-0.6.1.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/671.a72bd824c3cfdbc7f570.js +1 -0
  43. jupytergis_core-0.6.1.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/803.5f3759c98814aa602705.js +8 -0
  44. jupytergis_core-0.6.1.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/970.50a70b651103fce194d2.js +8 -0
  45. jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/729.2540a8113c71e8eb28ef.js.LICENSE.txt → jupytergis_core-0.6.1.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/970.50a70b651103fce194d2.js.LICENSE.txt +50 -0
  46. jupytergis_core-0.6.1.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/991.4f548de9fbf8e51a7f01.js +1 -0
  47. jupytergis_core-0.6.1.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/remoteEntry.dbd710a76941e40c3898.js +1 -0
  48. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/third-party-licenses.json +310 -10
  49. {jupytergis_core-0.5.0.dist-info → jupytergis_core-0.6.1.dist-info}/METADATA +1 -1
  50. jupytergis_core-0.6.1.dist-info/RECORD +117 -0
  51. jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/377.2ba30d7a93a2a2819b1b.js +0 -1
  52. jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/432.df2bee6966bdd5a48317.js +0 -1
  53. jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/552.3f267df0d8b2c9ef2c40.js +0 -1
  54. jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/729.2540a8113c71e8eb28ef.js +0 -8
  55. jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/803.8b9c4e2f8bed9130b6d0.js +0 -8
  56. jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/893.0bf9ee057c7e4666c364.js +0 -1
  57. jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/991.13deb14ad0c10be40859.js +0 -1
  58. jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/remoteEntry.6e9db18c72727800e9ea.js +0 -1
  59. jupytergis_core-0.5.0.dist-info/RECORD +0 -112
  60. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/etc/jupyter/jupyter_server_config.d/jupytergis_core.json +0 -0
  61. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/schemas/@jupytergis/jupytergis-core/jupytergis-settings.json +0 -0
  62. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/026680ab0cd1523edc87.png +0 -0
  63. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/02ff7d503bbd90b21fc4.png +0 -0
  64. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/062a9554f6b4caac9713.png +0 -0
  65. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/064f37cecb8130ad66e8.png +0 -0
  66. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/08da2741746ddab81d04.png +0 -0
  67. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/0c6a0352b82839119f95.png +0 -0
  68. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/13c485bb93f5567f02fd.png +0 -0
  69. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/1474207a6b3ca1001e78.png +0 -0
  70. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/14b98240613d5256c621.png +0 -0
  71. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/154.0d16fbe1d1182d138b2c.js +0 -0
  72. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/1b97ea0f2b3af717cffa.png +0 -0
  73. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/1d440270da19a2f22fee.png +0 -0
  74. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/1ed164e010f3c0306d15.png +0 -0
  75. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/2218dfba22fc2b08e948.png +0 -0
  76. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/234.2f0fc49f516ad354aa18.js +0 -0
  77. /jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/27.aea9e291ba3dd16790fb.js.LICENSE.txt → /jupytergis_core-0.6.1.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/27.6ee794baeb00791424c2.js.LICENSE.txt +0 -0
  78. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/2ab791b60c4058e664f8.png +0 -0
  79. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/2b24b6a745c11511f055.png +0 -0
  80. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/2d676bc0a01c2cd2fccb.png +0 -0
  81. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/2f02309ea499725612ea.png +0 -0
  82. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/32c7a73662cceb5bb1d7.png +0 -0
  83. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/350eec4ce9ae4bc10bca.wasm +0 -0
  84. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/363ca7c5f78deb6fd033.png +0 -0
  85. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/376.58a6410b7089dea5b0d5.js +0 -0
  86. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/3ae0bf244442de7efc35.png +0 -0
  87. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/3d48be10ffea86eb15de.png +0 -0
  88. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/407.da5d00862f4879fe3c9c.js +0 -0
  89. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/415edc3fa381260cf31e.png +0 -0
  90. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/42cbddf5e883673bc4e2.png +0 -0
  91. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/472.b2ea9ebc35d5ad4e1fcc.js +0 -0
  92. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/527ef171d5df15dc7da5.png +0 -0
  93. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/542.477a73b8682de0e8d45e.js +0 -0
  94. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/555.be80e60305924af2e139.js +0 -0
  95. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/5bb02252f243f8c7494f.png +0 -0
  96. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/5d181edc3c046e1454a1.png +0 -0
  97. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/5f32ad48aefe00e51312.png +0 -0
  98. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/618.86523276f857e0a3362e.js +0 -0
  99. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/6e4f6b4d0dfca3bd4450.png +0 -0
  100. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/71d436fb44627b6bfbd7.png +0 -0
  101. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/7b225dc2d37cd3582156.png +0 -0
  102. /jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/803.8b9c4e2f8bed9130b6d0.js.LICENSE.txt → /jupytergis_core-0.6.1.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/803.5f3759c98814aa602705.js.LICENSE.txt +0 -0
  103. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/843ab141e62516b9df5c.png +0 -0
  104. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/8814e17f6b110e8f3e42.png +0 -0
  105. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/88b2ae0d29edb684eae5.png +0 -0
  106. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/971a42d174dd17b9451a.png +0 -0
  107. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/a3c609f5bff95a7a53be.png +0 -0
  108. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/a86d626c9ed2e222d190.png +0 -0
  109. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/a9e286b0c0264a9fc737.png +0 -0
  110. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/ab309078b494f850430a.png +0 -0
  111. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/b15e3989b7b90b5a8d9d.png +0 -0
  112. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/b36717fbb06f21d53b01.png +0 -0
  113. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/ba4b6e82fe5a816c40a5.png +0 -0
  114. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/bb2b310570da7a3587e9.png +0 -0
  115. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/be92bcf7bb99753b4b3d.png +0 -0
  116. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/c2ffa011d7f52a0ddf45.png +0 -0
  117. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/d83457b1b925c1718f6d.png +0 -0
  118. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/e473e1e9f20af114bbb4.data +0 -0
  119. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/f2617180c6907263a7ff.png +0 -0
  120. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/fe99a6dbf5a71d308989.png +0 -0
  121. {jupytergis_core-0.5.0.data → jupytergis_core-0.6.1.data}/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/style.js +0 -0
  122. {jupytergis_core-0.5.0.dist-info → jupytergis_core-0.6.1.dist-info}/WHEEL +0 -0
  123. {jupytergis_core-0.5.0.dist-info → jupytergis_core-0.6.1.dist-info}/entry_points.txt +0 -0
  124. {jupytergis_core-0.5.0.dist-info → jupytergis_core-0.6.1.dist-info}/licenses/LICENSE +0 -0
@@ -1 +0,0 @@
1
- "use strict";(self.webpackChunk_jupytergis_jupytergis_core=self.webpackChunk_jupytergis_jupytergis_core||[]).push([[991],{29991:(e,t,r)=>{r.r(t),r.d(t,{JupyterGISDocumentWidgetFactory:()=>g,default:()=>q});var i=r(76903),o=r(37137),n=r(45551),s=r(85764),a=r(38999),p=r(3266),y=r(50498),m=r(98968),d=r(76208),u=r(2653),l=r(18217),c=r(87178);class g extends c.ABCWidgetFactory{constructor(e){var t;const{backendCheck:r,externalCommandRegistry:i}=e;super(function(e,t){var r={};for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&t.indexOf(i)<0&&(r[i]=e[i]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(i=Object.getOwnPropertySymbols(e);o<i.length;o++)t.indexOf(i[o])<0&&Object.prototype.propertyIsEnumerable.call(e,i[o])&&(r[i[o]]=e[i[o]])}return r}(e,["backendCheck","externalCommandRegistry"])),this.options=e,this._backendCheck=r,this._commands=e.commands,this._externalCommandRegistry=i,this._contentsManager=null===(t=e.manager)||void 0===t?void 0:t.contents}createNewWidget(e){if(this._backendCheck&&!this._backendCheck())throw new Error("Requested backend is not installed");const{model:t}=e;t.filePath=e.localPath,this._contentsManager&&(t.contentsManager=this._contentsManager);const r=new l.JupyterGISPanel({model:t,manager:this.options.manager,contentFactory:this.options.contentFactory,mimeTypeService:this.options.mimeTypeService,rendermime:this.options.rendermime,consoleTracker:this.options.consoleTracker,commandRegistry:this.options.commands}),i=new l.ToolbarWidget({commands:this._commands,model:t,externalCommands:this._externalCommandRegistry.getCommands()});return new l.JupyterGISDocumentWidget({context:e,content:r,toolbar:i})}}class b{constructor(e){this.collaborative=!0,this._disposed=!1,this._annotationModel=e.annotationModel,this._settingRegistry=e.settingRegistry}get name(){return"jupytergis-jgismodel"}get contentType(){return"jgis"}get fileFormat(){return"text"}get isDisposed(){return this._disposed}dispose(){this._disposed=!0}preferredLanguage(e){return""}createNew(e){const t=new o.JupyterGISModel({sharedModel:e.sharedModel,languagePreference:e.languagePreference,annotationModel:this._annotationModel,settingRegistry:this._settingRegistry});return t.initSettings(),t}}const h="JupyterGIS .jgis Viewer",f="jgis",I="jupytergis-jgismodel",S="@jupytergis/jupytergis-core:jupytergis-settings",j={id:"jupyterGIS:jGISplugin",requires:[o.IJupyterGISDocTracker,n.IThemeManager,y.IFileBrowserFactory,o.IJGISExternalCommandRegistryToken,a.ConsolePanel.IContentFactory,s.IEditorServices,d.IRenderMimeRegistry,a.IConsoleTracker,o.IAnnotationToken,u.ISettingRegistry],optional:[m.ILauncher,n.ICommandPalette,i.ICollaborativeDrive],autoStart:!0,activate:async(e,t,r,i,n,s,a,y,m,d,u,j,x,O)=>{p.PageConfig.getOption("jgis_expose_maps")&&(window.jupytergisMaps={});let T=null;try{T=await u.load(S),console.log(`Loaded settings for ${S}`,T)}catch(e){console.warn(`Failed to load settings for ${S}`,e)}const G=new g({name:h,modelName:I,fileTypes:[f],defaultFor:[f],tracker:t,commands:e.commands,externalCommandRegistry:n,manager:e.serviceManager,contentFactory:s,rendermime:y,mimeTypeService:a.mimeTypeService,consoleTracker:m});e.docRegistry.addWidgetFactory(G);const P=new c.MimeDocumentFactory({dataType:"json",rendermime:y,modelName:I,name:"JSON Editor",primaryFileType:e.docRegistry.getFileType("json"),fileTypes:[f]});e.docRegistry.addWidgetFactory(P);const v=new b({annotationModel:d,settingRegistry:u});e.docRegistry.addModelFactory(v),e.docRegistry.addFileType({name:f,displayName:"JGIS",mimeTypes:["text/json"],extensions:[".jgis",".JGIS"],fileFormat:"text",contentType:f,icon:l.logoMiniIcon});O&&O.sharedModelFactory.registerDocumentFactory(f,(()=>new o.JupyterGISDoc)),G.widgetCreated.connect(((i,o)=>{o.title.icon=l.logoIcon,o.context.pathChanged.connect((()=>{t.save(o)})),r.themeChanged.connect(((e,t)=>o.model.themeChanged.emit(t))),e.shell.activateById("jupytergis::leftControlPanel"),e.shell.activateById("jupytergis::rightControlPanel"),t.add(o).then((()=>{Object.values(l.CommandIDs).forEach((t=>{e.commands.hasCommand(t)&&e.commands.notifyCommandChanged(t)}))})).catch((e=>{console.error("Cannot update JupyterGIS commands",e)}))})),e.commands.addCommand(l.CommandIDs.createNew,{label:e=>"GIS File",caption:"Create a new JGIS Editor",icon:e=>l.logoIcon,execute:async t=>{var r;const n=t.cwd||(null===(r=i.tracker.currentWidget)||void 0===r?void 0:r.model.path);let s=await e.serviceManager.contents.newUntitled({path:n,type:"file",ext:".jGIS"});return s=await e.serviceManager.contents.save(s.path,Object.assign(Object.assign({},s),{format:"text",size:void 0,content:`{\n\t"schemaVersion": "${o.SCHEMA_VERSION}",\n\t"layers": {},\n\t"sources": {},\n\t"options": {"latitude": 0, "longitude": 0, "zoom": 0, "bearing": 0, "pitch": 0, "projection": "EPSG:3857"},\n\t"layerTree": [],\n\t"metadata": {}\n}`})),e.commands.execute("docmanager:open",{path:s.path,factory:h})}}),j&&j.add({command:l.CommandIDs.createNew,category:"Other",rank:1}),x&&(x.addItem({command:l.CommandIDs.createNew,args:{isPalette:!0},category:"JupyterGIS"}),x.addItem({command:l.CommandIDs.openLayerBrowser,category:"JupyterGIS"}),x.addItem({command:l.CommandIDs.newRasterEntry,category:"JupyterGIS"}),x.addItem({command:l.CommandIDs.newVectorTileEntry,category:"JupyterGIS"}),x.addItem({command:l.CommandIDs.newGeoJSONEntry,category:"JupyterGIS"}),x.addItem({command:l.CommandIDs.newHillshadeEntry,category:"JupyterGIS"}),x.addItem({command:l.CommandIDs.moveLayerToNewGroup,category:"JupyterGIS"}),x.addItem({command:l.CommandIDs.buffer,category:"JupyterGIS"}))}};var x=r(72226),O=r(35981),T=r(39983);class G{constructor(){this._registry=new Set}registerCommand(e){this._registry.add(e)}getCommands(){return[...this._registry]}}class P{constructor(){this._registry=[]}getRegistryLayers(){return[...this._registry]}addRegistryLayer(e){this._registry.push(e)}removeRegistryLayer(e){this._registry=this._registry.filter((t=>t.name!==e))}clearRegistry(){this._registry=[]}}const v=JSON.parse('{"ExportGeoJSONSchema":{"type":"object","required":["exportFileName"],"additionalProperties":false,"properties":{"exportFileName":{"type":"string","title":"GeoJSON File Name","default":"exported_layer","description":"The name of the exported GeoJSON file."}}},"ExportGeoTIFFSchema":{"type":"object","required":["exportFileName","resolutionX","resolutionY"],"additionalProperties":false,"properties":{"exportFileName":{"type":"string","title":"GeoTiFF File Name","default":"exported_layer","description":"The name of the exported GeoTIFF file."},"resolutionX":{"type":"number","title":"Resolution (Width)","default":1200,"minimum":1,"maximum":10000,"description":"The width resolution for the raster export."},"resolutionY":{"type":"number","title":"Resolution (Height)","default":1200,"minimum":1,"maximum":10000,"description":"The height resolution for the raster export."}}},"Buffer":{"type":"object","required":["inputLayer","bufferDistance"],"additionalProperties":false,"properties":{"inputLayer":{"type":"string","description":"The input layer for buffering."},"bufferDistance":{"type":"number","default":10,"description":"The distance used for buffering the geometry (in projection units)."},"embedOutputLayer":{"type":"boolean","title":"Embed output buffered layer in file","default":true}}},"Dissolve":{"type":"object","required":["inputLayer","dissolveField"],"additionalProperties":false,"properties":{"inputLayer":{"type":"string","description":"The input layer for the dissolve operation."},"dissolveField":{"type":"string","description":"The field based on which geometries will be dissolved."},"embedOutputLayer":{"type":"boolean","title":"Embed output dissolved layer in file","default":true}}},"HeatmapLayer":{"type":"object","required":["source","blur","radius"],"additionalProperties":false,"properties":{"source":{"type":"string","description":"The id of the source"},"opacity":{"type":"number","description":"The opacity of the source","default":1,"multipleOf":0.1,"minimum":0,"maximum":1},"radius":{"type":"number","description":"Radius size in pixels","default":8},"blur":{"type":"number","description":"Blur size in pixels","default":15},"color":{"type":"array","items":{"type":"string"},"default":["#00f","#0ff","#0f0","#ff0","#f00"]},"symbologyState":{"type":"object","description":"The state of the symbology panel options","required":["renderType"],"properties":{"renderType":{"type":"string"},"colorRamp":{"type":"string","default":"cool"}}}}},"HillshadeLayer":{"type":"object","required":["source"],"additionalProperties":false,"properties":{"source":{"type":"string","description":"The id of the source"},"shadowColor":{"type":"string","description":"The color of the the shadows","default":"#473B24"}}},"ImageLayer":{"type":"object","required":["source"],"additionalProperties":false,"properties":{"source":{"type":"string","description":"The id of the source"},"opacity":{"type":"number","description":"The opacity of the source","default":1,"multipleOf":0.1,"minimum":0,"maximum":1}}},"RasterLayer":{"type":"object","required":["source"],"additionalProperties":false,"properties":{"source":{"type":"string","description":"The id of the source"},"opacity":{"type":"number","description":"The opacity of the source","default":1,"multipleOf":0.1,"minimum":0,"maximum":1}}},"VectorTileLayer":{"type":"object","required":["source","type"],"additionalProperties":false,"properties":{"source":{"type":"string","description":"The id of the source"},"type":{"type":"string","enum":["circle","fill","line"],"default":"line","description":"The type of vector layer"},"color":{"type":"object","description":"The color of the the object"},"opacity":{"type":"number","description":"The opacity of the the object","default":1,"multipleOf":0.1,"minimum":0,"maximum":1}}},"VectorLayer":{"type":"object","required":["source","type"],"additionalProperties":false,"properties":{"source":{"type":"string","description":"The id of the source"},"type":{"type":"string","enum":["circle","fill","line"],"default":"line","description":"The type of vector layer"},"color":{"type":"object","description":"The color of the the object"},"opacity":{"type":"number","description":"The opacity of the the object","default":1,"multipleOf":0.1,"minimum":0,"maximum":1},"symbologyState":{"type":"object","description":"The state of the symbology panel options","required":["renderType"],"properties":{"renderType":{"type":"string","enum":["Single Symbol","Graduated","Categorized"]},"value":{"type":"string"},"method":{"type":"string","enum":["color","radius"]},"colorRamp":{"type":"string","default":"cool"},"nClasses":{"type":"string","default":"9"},"mode":{"type":"string","default":"equal interval","enum":["quantile","equal interval","jenks","pretty","logarithmic"]}},"additionalProperties":false}}},"WebGlLayer":{"type":"object","required":["source"],"additionalProperties":false,"properties":{"source":{"type":"string","description":"The id of the source"},"opacity":{"type":"number","description":"The opacity of the source","default":1,"multipleOf":0.1,"minimum":0,"maximum":1},"color":{"oneOf":[{"type":"string"},{"type":"number"},{"type":"array","items":{"anyOf":[{"type":"string"},{"type":"number"},{"type":"array","items":{"anyOf":[{"type":"number"},{"type":"string"},{"type":"array","items":{"anyOf":[{"type":"number"},{"type":"string"}]}}]}}]}}],"description":"The color of the the object"},"symbologyState":{"type":"object","description":"The state of the symbology panel options","required":["renderType"],"properties":{"renderType":{"type":"string"},"band":{"type":"number"},"redBand":{"type":"number"},"greenBand":{"type":"number"},"blueBand":{"type":"number"},"interpolation":{"type":"string","enum":["discrete","linear","exact"]},"colorRamp":{"type":"string","default":"cool"},"nClasses":{"type":"string","default":"9"},"mode":{"type":"string","default":"equal interval","enum":["continuous","equal interval","quantile"]}},"additionalProperties":false}}},"GeoTiffSource":{"type":"object","required":["urls"],"additionalProperties":false,"properties":{"urls":{"type":"array","items":{"type":"object","properties":{"url":{"type":"string"},"min":{"type":"number"},"max":{"type":"number"}}},"minItems":1,"description":"URLs"},"normalize":{"type":"boolean","default":true},"wrapX":{"type":"boolean","default":false},"interpolate":{"type":"boolean","description":"Interpolate between grid cells when overzooming?","default":false}}},"ImageSource":{"type":"object","required":["path","coordinates"],"additionalProperties":false,"properties":{"path":{"type":"string","readOnly":true,"description":"Path that points to an image"},"coordinates":{"type":"array","readOnly":true,"items":{"type":"array","items":{"type":"number"},"minItems":2,"maxItems":2},"minItems":4,"maxItems":4,"default":[],"description":"Corners of image specified in longitude, latitude pairs"},"interpolate":{"type":"boolean","description":"Interpolate between grid cells when overzooming?","default":false}}},"RasterDemSource":{"type":"object","required":["url"],"additionalProperties":false,"properties":{"url":{"type":"string","description":"The url to the tile provider"},"attribution":{"type":"string","description":"The attribution for the raster-dem source"},"urlParameters":{"type":"object","additionalProperties":{"type":"string"}},"interpolate":{"type":"boolean","description":"Interpolate between grid cells when overzooming?","default":false}}},"RasterSource":{"type":"object","required":["url","maxZoom","minZoom"],"additionalProperties":false,"properties":{"url":{"type":"string","description":"The url to the tile provider"},"minZoom":{"type":"number","minimum":0,"maximum":24,"readOnly":true,"description":"The minimum zoom level for the raster source","default":0},"maxZoom":{"type":"number","minimum":0,"maximum":24,"readOnly":true,"description":"The maximum zoom level for the raster source","default":24},"attribution":{"type":"string","readOnly":true,"description":"The attribution for the raster source","default":""},"htmlAttribution":{"type":"string","readOnly":true,"description":"The html attribution for the raster source","default":""},"provider":{"type":"string","readOnly":true,"description":"The map provider","default":""},"bounds":{"type":"array","readOnly":true,"items":{"type":"array","items":{"type":"number"}},"default":[],"description":"The bounds of the source"},"urlParameters":{"type":"object","additionalProperties":{"type":"string"},"default":{}},"interpolate":{"type":"boolean","description":"Interpolate between grid cells when overzooming?","default":false}}},"ShapefileSource":{"type":"object","required":["path"],"additionalProperties":false,"properties":{"path":{"type":"string","description":"The path to the shapefile (.shp, .zip, or folder URL)."},"attribution":{"type":"string","readOnly":true,"description":"The attribution for the shapefile source.","default":""},"projection":{"type":"string","description":"The projection information for the shapefile (optional).","default":"WGS84"},"encoding":{"type":"string","description":"The encoding used for the shapefile\'s DBF (optional).","default":"UTF-8"},"additionalFiles":{"type":"object","description":"Additional files associated with the shapefile (e.g., .dbf, .prj, .cpg).","additionalProperties":{"type":"string"},"default":{}}}},"VectorTileSource":{"type":"object","required":["url","maxZoom","minZoom"],"additionalProperties":false,"properties":{"url":{"type":"string","description":"The url to the tile provider"},"minZoom":{"type":"number","minimum":0,"maximum":24,"description":"The minimum zoom level for the vector source"},"maxZoom":{"type":"number","minimum":0,"maximum":24,"description":"The maximum zoom level for the vector source"},"attribution":{"type":"string","description":"The attribution for the vector source"},"provider":{"type":"string","readOnly":true,"description":"The map provider"},"urlParameters":{"type":"object","additionalProperties":{"type":"string"}}}},"VideoSource":{"type":"object","required":["urls","coordinates"],"additionalProperties":false,"properties":{"urls":{"type":"array","items":{"type":"string"},"minItems":1,"default":[],"description":"URLs to video content in order of preferred format"},"coordinates":{"type":"array","items":{"type":"array","items":{"type":"number"},"minItems":2,"maxItems":2},"minItems":4,"maxItems":4,"default":[],"description":"Corners of video specified in longitude, latitude pairs"}}},"GeoJSONSource":{"type":"object","required":[],"additionalProperties":false,"properties":{"path":{"type":"string","description":"The local path to a GeoJSON file"},"data":{"type":"object","description":"The GeoJSON data","$schema":"http://json-schema.org/draft-07/schema#","$id":"https://geojson.org/schema/GeoJSON.json","title":"GeoJSON","oneOf":[{"title":"GeoJSON Point","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["Point"]},"coordinates":{"type":"array","minItems":2,"items":{"type":"number"}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON LineString","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["LineString"]},"coordinates":{"type":"array","minItems":2,"items":{"type":"array","minItems":2,"items":{"type":"number"}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON Polygon","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["Polygon"]},"coordinates":{"type":"array","items":{"type":"array","minItems":4,"items":{"type":"array","minItems":2,"items":{"type":"number"}}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON MultiPoint","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["MultiPoint"]},"coordinates":{"type":"array","items":{"type":"array","minItems":2,"items":{"type":"number"}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON MultiLineString","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["MultiLineString"]},"coordinates":{"type":"array","items":{"type":"array","minItems":2,"items":{"type":"array","minItems":2,"items":{"type":"number"}}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON MultiPolygon","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["MultiPolygon"]},"coordinates":{"type":"array","items":{"type":"array","items":{"type":"array","minItems":4,"items":{"type":"array","minItems":2,"items":{"type":"number"}}}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON GeometryCollection","type":"object","required":["type","geometries"],"properties":{"type":{"type":"string","enum":["GeometryCollection"]},"geometries":{"type":"array","items":{"oneOf":[{"title":"GeoJSON Point","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["Point"]},"coordinates":{"type":"array","minItems":2,"items":{"type":"number"}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON LineString","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["LineString"]},"coordinates":{"type":"array","minItems":2,"items":{"type":"array","minItems":2,"items":{"type":"number"}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON Polygon","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["Polygon"]},"coordinates":{"type":"array","items":{"type":"array","minItems":4,"items":{"type":"array","minItems":2,"items":{"type":"number"}}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON MultiPoint","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["MultiPoint"]},"coordinates":{"type":"array","items":{"type":"array","minItems":2,"items":{"type":"number"}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON MultiLineString","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["MultiLineString"]},"coordinates":{"type":"array","items":{"type":"array","minItems":2,"items":{"type":"array","minItems":2,"items":{"type":"number"}}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON MultiPolygon","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["MultiPolygon"]},"coordinates":{"type":"array","items":{"type":"array","items":{"type":"array","minItems":4,"items":{"type":"array","minItems":2,"items":{"type":"number"}}}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}}]}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON Feature","type":"object","required":["type","properties","geometry"],"properties":{"type":{"type":"string","enum":["Feature"]},"id":{"oneOf":[{"type":"number"},{"type":"string"}]},"properties":{"oneOf":[{"type":"null"},{"type":"object"}]},"geometry":{"oneOf":[{"type":"null"},{"title":"GeoJSON Point","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["Point"]},"coordinates":{"type":"array","minItems":2,"items":{"type":"number"}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON LineString","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["LineString"]},"coordinates":{"type":"array","minItems":2,"items":{"type":"array","minItems":2,"items":{"type":"number"}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON Polygon","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["Polygon"]},"coordinates":{"type":"array","items":{"type":"array","minItems":4,"items":{"type":"array","minItems":2,"items":{"type":"number"}}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON MultiPoint","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["MultiPoint"]},"coordinates":{"type":"array","items":{"type":"array","minItems":2,"items":{"type":"number"}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON MultiLineString","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["MultiLineString"]},"coordinates":{"type":"array","items":{"type":"array","minItems":2,"items":{"type":"array","minItems":2,"items":{"type":"number"}}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON MultiPolygon","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["MultiPolygon"]},"coordinates":{"type":"array","items":{"type":"array","items":{"type":"array","minItems":4,"items":{"type":"array","minItems":2,"items":{"type":"number"}}}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON GeometryCollection","type":"object","required":["type","geometries"],"properties":{"type":{"type":"string","enum":["GeometryCollection"]},"geometries":{"type":"array","items":{"oneOf":[{"title":"GeoJSON Point","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["Point"]},"coordinates":{"type":"array","minItems":2,"items":{"type":"number"}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON LineString","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["LineString"]},"coordinates":{"type":"array","minItems":2,"items":{"type":"array","minItems":2,"items":{"type":"number"}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON Polygon","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["Polygon"]},"coordinates":{"type":"array","items":{"type":"array","minItems":4,"items":{"type":"array","minItems":2,"items":{"type":"number"}}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON MultiPoint","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["MultiPoint"]},"coordinates":{"type":"array","items":{"type":"array","minItems":2,"items":{"type":"number"}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON MultiLineString","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["MultiLineString"]},"coordinates":{"type":"array","items":{"type":"array","minItems":2,"items":{"type":"array","minItems":2,"items":{"type":"number"}}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON MultiPolygon","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["MultiPolygon"]},"coordinates":{"type":"array","items":{"type":"array","items":{"type":"array","minItems":4,"items":{"type":"array","minItems":2,"items":{"type":"number"}}}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}}]}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}}]},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON FeatureCollection","type":"object","required":["type","features"],"properties":{"type":{"type":"string","enum":["FeatureCollection"]},"features":{"type":"array","items":{"title":"GeoJSON Feature","type":"object","required":["type","properties","geometry"],"properties":{"type":{"type":"string","enum":["Feature"]},"id":{"oneOf":[{"type":"number"},{"type":"string"}]},"properties":{"oneOf":[{"type":"null"},{"type":"object"}]},"geometry":{"oneOf":[{"type":"null"},{"title":"GeoJSON Point","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["Point"]},"coordinates":{"type":"array","minItems":2,"items":{"type":"number"}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON LineString","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["LineString"]},"coordinates":{"type":"array","minItems":2,"items":{"type":"array","minItems":2,"items":{"type":"number"}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON Polygon","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["Polygon"]},"coordinates":{"type":"array","items":{"type":"array","minItems":4,"items":{"type":"array","minItems":2,"items":{"type":"number"}}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON MultiPoint","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["MultiPoint"]},"coordinates":{"type":"array","items":{"type":"array","minItems":2,"items":{"type":"number"}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON MultiLineString","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["MultiLineString"]},"coordinates":{"type":"array","items":{"type":"array","minItems":2,"items":{"type":"array","minItems":2,"items":{"type":"number"}}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON MultiPolygon","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["MultiPolygon"]},"coordinates":{"type":"array","items":{"type":"array","items":{"type":"array","minItems":4,"items":{"type":"array","minItems":2,"items":{"type":"number"}}}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON GeometryCollection","type":"object","required":["type","geometries"],"properties":{"type":{"type":"string","enum":["GeometryCollection"]},"geometries":{"type":"array","items":{"oneOf":[{"title":"GeoJSON Point","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["Point"]},"coordinates":{"type":"array","minItems":2,"items":{"type":"number"}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON LineString","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["LineString"]},"coordinates":{"type":"array","minItems":2,"items":{"type":"array","minItems":2,"items":{"type":"number"}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON Polygon","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["Polygon"]},"coordinates":{"type":"array","items":{"type":"array","minItems":4,"items":{"type":"array","minItems":2,"items":{"type":"number"}}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON MultiPoint","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["MultiPoint"]},"coordinates":{"type":"array","items":{"type":"array","minItems":2,"items":{"type":"number"}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON MultiLineString","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["MultiLineString"]},"coordinates":{"type":"array","items":{"type":"array","minItems":2,"items":{"type":"array","minItems":2,"items":{"type":"number"}}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}},{"title":"GeoJSON MultiPolygon","type":"object","required":["type","coordinates"],"properties":{"type":{"type":"string","enum":["MultiPolygon"]},"coordinates":{"type":"array","items":{"type":"array","items":{"type":"array","minItems":4,"items":{"type":"array","minItems":2,"items":{"type":"number"}}}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}}]}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}}]},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}}},"bbox":{"type":"array","minItems":4,"items":{"type":"number"}}}}]},"valid":{"type":"boolean","description":"Whether the data are valid or not","readOnly":true}}}}');class J{constructor(e){this._registry=new Map(Object.entries(v)),this._docManager=e}registerSchema(e,t){this._registry.has(e)?console.error("Worker is already registered!"):this._registry.set(e,t)}has(e){return this._registry.has(e)}getSchemas(){return this._registry}getDocManager(){return this._docManager}}const q=[{id:"jupytergis:core:tracker",autoStart:!0,requires:[O.ITranslator],optional:[x.IMainMenu],provides:o.IJupyterGISDocTracker,activate:(e,t,r)=>{const i=new n.WidgetTracker({namespace:"jupytergis"});return console.log("jupytergis:core:tracker is activated!"),i}},j,{id:"jupytergis:core:form-schema-registry",autoStart:!0,requires:[T.IDocumentManager],provides:o.IJGISFormSchemaRegistryToken,activate:(e,t)=>new J(t)},{id:"jupytergis:core:external-command-registry",autoStart:!0,requires:[],provides:o.IJGISExternalCommandRegistryToken,activate:e=>new G},{id:"jupytergis:core:layer-browser-registry",autoStart:!0,requires:[],provides:o.IJGISLayerBrowserRegistryToken,activate:e=>(console.log("jupytergis:core:layer-browser-registry is activated"),new P)},{id:"jupytergis:core:annotation",autoStart:!0,requires:[o.IJupyterGISDocTracker],provides:o.IAnnotationToken,activate:(e,t)=>{var r;const i=new l.AnnotationModel({model:null===(r=t.currentWidget)||void 0===r?void 0:r.model});return t.currentChanged.connect(((e,t)=>{i.model=(null==t?void 0:t.model)||void 0})),i}}]}}]);
@@ -1 +0,0 @@
1
- var _JUPYTERLAB;(()=>{"use strict";var e,r,t,a,o,n,i,u,l,f,d,s,c,p,b,h,y,v,m,g,j,w,P,O,S,E,_,x={71650:(e,r,t)=>{var a={"./index":()=>Promise.all([t.e(968),t.e(991)]).then((()=>()=>t(29991))),"./extension":()=>Promise.all([t.e(968),t.e(991)]).then((()=>()=>t(29991))),"./style":()=>t.e(432).then((()=>()=>t(51432)))},o=(e,r)=>(t.R=r,r=t.o(a,e)?a[e]():Promise.resolve().then((()=>{throw new Error('Module "'+e+'" does not exist in container.')})),t.R=void 0,r),n=(e,r)=>{if(t.S){var a="default",o=t.S[a];if(o&&o!==e)throw new Error("Container initialization failed as it has already been initialized with a different share scope");return t.S[a]=e,t.I(a,r)}};t.d(r,{get:()=>o,init:()=>n})}},k={};function T(e){var r=k[e];if(void 0!==r)return r.exports;var t=k[e]={id:e,loaded:!1,exports:{}};return x[e].call(t.exports,t,t.exports,T),t.loaded=!0,t.exports}T.m=x,T.c=k,T.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return T.d(r,{a:r}),r},r=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,T.t=function(t,a){if(1&a&&(t=this(t)),8&a)return t;if("object"==typeof t&&t){if(4&a&&t.__esModule)return t;if(16&a&&"function"==typeof t.then)return t}var o=Object.create(null);T.r(o);var n={};e=e||[null,r({}),r([]),r(r)];for(var i=2&a&&t;"object"==typeof i&&!~e.indexOf(i);i=r(i))Object.getOwnPropertyNames(i).forEach((e=>n[e]=()=>t[e]));return n.default=()=>t,T.d(o,n),o},T.d=(e,r)=>{for(var t in r)T.o(r,t)&&!T.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},T.f={},T.e=e=>Promise.all(Object.keys(T.f).reduce(((r,t)=>(T.f[t](e,r),r)),[])),T.u=e=>e+"."+{27:"aea9e291ba3dd16790fb",154:"0d16fbe1d1182d138b2c",234:"2f0fc49f516ad354aa18",376:"58a6410b7089dea5b0d5",377:"2ba30d7a93a2a2819b1b",407:"da5d00862f4879fe3c9c",432:"df2bee6966bdd5a48317",472:"b2ea9ebc35d5ad4e1fcc",542:"477a73b8682de0e8d45e",552:"3f267df0d8b2c9ef2c40",555:"be80e60305924af2e139",618:"86523276f857e0a3362e",729:"2540a8113c71e8eb28ef",803:"8b9c4e2f8bed9130b6d0",893:"0bf9ee057c7e4666c364",991:"13deb14ad0c10be40859"}[e]+".js?v="+{27:"aea9e291ba3dd16790fb",154:"0d16fbe1d1182d138b2c",234:"2f0fc49f516ad354aa18",376:"58a6410b7089dea5b0d5",377:"2ba30d7a93a2a2819b1b",407:"da5d00862f4879fe3c9c",432:"df2bee6966bdd5a48317",472:"b2ea9ebc35d5ad4e1fcc",542:"477a73b8682de0e8d45e",552:"3f267df0d8b2c9ef2c40",555:"be80e60305924af2e139",618:"86523276f857e0a3362e",729:"2540a8113c71e8eb28ef",803:"8b9c4e2f8bed9130b6d0",893:"0bf9ee057c7e4666c364",991:"13deb14ad0c10be40859"}[e],T.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),T.hmd=e=>((e=Object.create(e)).children||(e.children=[]),Object.defineProperty(e,"exports",{enumerable:!0,set:()=>{throw new Error("ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: "+e.id)}}),e),T.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),t={},a="@jupytergis/jupytergis-core:",T.l=(e,r,o,n)=>{if(t[e])t[e].push(r);else{var i,u;if(void 0!==o)for(var l=document.getElementsByTagName("script"),f=0;f<l.length;f++){var d=l[f];if(d.getAttribute("src")==e||d.getAttribute("data-webpack")==a+o){i=d;break}}i||(u=!0,(i=document.createElement("script")).charset="utf-8",i.timeout=120,T.nc&&i.setAttribute("nonce",T.nc),i.setAttribute("data-webpack",a+o),i.src=e),t[e]=[r];var s=(r,a)=>{i.onerror=i.onload=null,clearTimeout(c);var o=t[e];if(delete t[e],i.parentNode&&i.parentNode.removeChild(i),o&&o.forEach((e=>e(a))),r)return r(a)},c=setTimeout(s.bind(null,void 0,{type:"timeout",target:i}),12e4);i.onerror=s.bind(null,i.onerror),i.onload=s.bind(null,i.onload),u&&document.head.appendChild(i)}},T.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},T.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),(()=>{T.S={};var e={},r={};T.I=(t,a)=>{a||(a=[]);var o=r[t];if(o||(o=r[t]={}),!(a.indexOf(o)>=0)){if(a.push(o),e[t])return e[t];T.o(T.S,t)||(T.S[t]={});var n=T.S[t],i="@jupytergis/jupytergis-core",u=(e,r,t,a)=>{var o=n[e]=n[e]||{},u=o[r];(!u||!u.loaded&&(!a!=!u.eager?a:i>u.from))&&(o[r]={get:t,from:i,eager:!!a})},l=[];return"default"===t&&(u("@jupyter/collaborative-drive","3.1.2",(()=>Promise.all([T.e(262),T.e(234)]).then((()=>()=>T(20234))))),u("@jupytergis/base","0.5.0",(()=>Promise.all([T.e(729),T.e(262),T.e(602),T.e(893),T.e(968)]).then((()=>()=>T(69988))))),u("@jupytergis/jupytergis-core","0.5.0",(()=>Promise.all([T.e(968),T.e(991)]).then((()=>()=>T(29991))))),u("@jupytergis/schema","0.5.0",(()=>Promise.all([T.e(803),T.e(262),T.e(602),T.e(377)]).then((()=>()=>T(6377)))))),e[t]=l.length?Promise.all(l).then((()=>e[t]=1)):1}}})(),(()=>{var e;T.g.importScripts&&(e=T.g.location+"");var r=T.g.document;if(!e&&r&&(r.currentScript&&"SCRIPT"===r.currentScript.tagName.toUpperCase()&&(e=r.currentScript.src),!e)){var t=r.getElementsByTagName("script");if(t.length)for(var a=t.length-1;a>-1&&(!e||!/^http(s?):/.test(e));)e=t[a--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),T.p=e})(),o=e=>{var r=e=>e.split(".").map((e=>+e==e?+e:e)),t=/^([^-+]+)?(?:-([^+]+))?(?:\+(.+))?$/.exec(e),a=t[1]?r(t[1]):[];return t[2]&&(a.length++,a.push.apply(a,r(t[2]))),t[3]&&(a.push([]),a.push.apply(a,r(t[3]))),a},n=(e,r)=>{e=o(e),r=o(r);for(var t=0;;){if(t>=e.length)return t<r.length&&"u"!=(typeof r[t])[0];var a=e[t],n=(typeof a)[0];if(t>=r.length)return"u"==n;var i=r[t],u=(typeof i)[0];if(n!=u)return"o"==n&&"n"==u||"s"==u||"u"==n;if("o"!=n&&"u"!=n&&a!=i)return a<i;t++}},i=e=>{var r=e[0],t="";if(1===e.length)return"*";if(r+.5){t+=0==r?">=":-1==r?"<":1==r?"^":2==r?"~":r>0?"=":"!=";for(var a=1,o=1;o<e.length;o++)a--,t+="u"==(typeof(u=e[o]))[0]?"-":(a>0?".":"")+(a=2,u);return t}var n=[];for(o=1;o<e.length;o++){var u=e[o];n.push(0===u?"not("+l()+")":1===u?"("+l()+" || "+l()+")":2===u?n.pop()+" "+n.pop():i(u))}return l();function l(){return n.pop().replace(/^\((.+)\)$/,"$1")}},u=(e,r)=>{if(0 in e){r=o(r);var t=e[0],a=t<0;a&&(t=-t-1);for(var n=0,i=1,l=!0;;i++,n++){var f,d,s=i<e.length?(typeof e[i])[0]:"";if(n>=r.length||"o"==(d=(typeof(f=r[n]))[0]))return!l||("u"==s?i>t&&!a:""==s!=a);if("u"==d){if(!l||"u"!=s)return!1}else if(l)if(s==d)if(i<=t){if(f!=e[i])return!1}else{if(a?f>e[i]:f<e[i])return!1;f!=e[i]&&(l=!1)}else if("s"!=s&&"n"!=s){if(a||i<=t)return!1;l=!1,i--}else{if(i<=t||d<s!=a)return!1;l=!1}else"s"!=s&&"n"!=s&&(l=!1,i--)}}var c=[],p=c.pop.bind(c);for(n=1;n<e.length;n++){var b=e[n];c.push(1==b?p()|p():2==b?p()&p():b?u(b,r):!p())}return!!p()},l=(e,r)=>e&&T.o(e,r),f=e=>(e.loaded=1,e.get()),d=e=>Object.keys(e).reduce(((r,t)=>(e[t].eager&&(r[t]=e[t]),r)),{}),s=(e,r,t)=>{var a=t?d(e[r]):e[r];return(r=Object.keys(a).reduce(((e,r)=>!e||n(e,r)?r:e),0))&&a[r]},c=(e,r,t,a)=>{var o=a?d(e[r]):e[r];return(r=Object.keys(o).reduce(((e,r)=>!u(t,r)||e&&!n(e,r)?e:r),0))&&o[r]},p=(e,r,t)=>{var a=t?d(e[r]):e[r];return Object.keys(a).reduce(((e,r)=>!e||!a[e].loaded&&n(e,r)?r:e),0)},b=(e,r,t,a)=>"Unsatisfied version "+t+" from "+(t&&e[r][t].from)+" of shared singleton module "+r+" (required "+i(a)+")",h=(e,r,t,a,o)=>{var n=e[t];return"No satisfying version ("+i(a)+")"+(o?" for eager consumption":"")+" of shared module "+t+" found in shared scope "+r+".\nAvailable versions: "+Object.keys(n).map((e=>e+" from "+n[e].from)).join(", ")},y=e=>{throw new Error(e)},v=e=>{"undefined"!=typeof console&&console.warn&&console.warn(e)},g=(e,r,t)=>t?t():((e,r)=>y("Shared module "+r+" doesn't exist in shared scope "+e))(e,r),j=(m=e=>function(r,t,a,o,n){var i=T.I(r);return i&&i.then&&!a?i.then(e.bind(e,r,T.S[r],t,!1,o,n)):e(r,T.S[r],t,a,o,n)})(((e,r,t,a,o,n)=>{if(!l(r,t))return g(e,t,n);var i=c(r,t,o,a);return i?f(i):(v(h(r,e,t,o,a)),f(s(r,t,a)))})),w=m(((e,r,t,a,o,n)=>{if(!l(r,t))return g(e,t,n);var i=c(r,t,o,a);return i?f(i):n?n():void y(h(r,e,t,o,a))})),P=m(((e,r,t,a,o,n)=>{if(!l(r,t))return g(e,t,n);var i=p(r,t,a);return u(o,i)||v(b(r,t,i,o)),f(r[t][i])})),O={},S={3266:()=>P("default","@jupyterlab/coreutils",!1,[1,6,4,2]),37137:()=>P("default","@jupytergis/schema",!1,[2,0,5,0],(()=>Promise.all([T.e(803),T.e(262),T.e(602),T.e(377)]).then((()=>()=>T(6377))))),38999:()=>P("default","@jupyterlab/console",!1,[1,4,4,2]),45551:()=>P("default","@jupyterlab/apputils",!1,[1,4,5,2]),50498:()=>P("default","@jupyterlab/filebrowser",!1,[1,4,4,2]),87178:()=>j("default","@jupyterlab/docregistry",!1,[1,4,4,2]),2653:()=>P("default","@jupyterlab/settingregistry",!1,[1,4,4,2]),18217:()=>P("default","@jupytergis/base",!1,[2,0,5,0],(()=>Promise.all([T.e(729),T.e(262),T.e(602),T.e(893)]).then((()=>()=>T(69988))))),35981:()=>P("default","@jupyterlab/translation",!1,[1,4,4,2]),39983:()=>P("default","@jupyterlab/docmanager",!1,[1,4,4,2]),72226:()=>P("default","@jupyterlab/mainmenu",!1,[1,4,4,2]),76208:()=>P("default","@jupyterlab/rendermime",!1,[1,4,4,2]),76903:()=>w("default","@jupyter/collaborative-drive",!1,[1,3,0,0],(()=>Promise.all([T.e(262),T.e(234)]).then((()=>()=>T(20234))))),85764:()=>P("default","@jupyterlab/codeeditor",!1,[1,4,4,2]),98968:()=>P("default","@jupyterlab/launcher",!1,[1,4,4,2]),67262:()=>P("default","@lumino/coreutils",!1,[1,2,0,0]),74602:()=>P("default","@lumino/signaling",!1,[1,2,0,0]),35256:()=>P("default","@lumino/widgets",!1,[1,2,3,1,,"alpha",0]),40180:()=>P("default","@jupyter/react-components",!1,[2,0,16,6]),40592:()=>j("default","@jupyterlab/observables",!1,[1,5,4,2]),42235:()=>P("default","@jupyterlab/ui-components",!1,[1,4,4,2]),46167:()=>P("default","@lumino/commands",!1,[1,2,0,1]),46230:()=>P("default","@lumino/messaging",!1,[1,2,0,0]),85713:()=>P("default","@jupyterlab/services",!1,[1,7,4,2]),93345:()=>P("default","react",!1,[1,18,2,0]),28e3:()=>P("default","@jupyter/ydoc",!1,[1,3,0,0,,"a3"])},E={262:[67262],377:[28e3],602:[74602],893:[35256,40180,40592,42235,46167,46230,85713,93345],968:[3266,37137,38999,45551,50498,87178],991:[2653,18217,35981,39983,72226,76208,76903,85764,98968]},_={},T.f.consumes=(e,r)=>{T.o(E,e)&&E[e].forEach((e=>{if(T.o(O,e))return r.push(O[e]);if(!_[e]){var t=r=>{O[e]=0,T.m[e]=t=>{delete T.c[e],t.exports=r()}};_[e]=!0;var a=r=>{delete O[e],T.m[e]=t=>{throw delete T.c[e],r}};try{var o=S[e]();o.then?r.push(O[e]=o.then(t).catch(a)):t(o)}catch(e){a(e)}}}))},(()=>{T.b=document.baseURI||self.location.href;var e={108:0};T.f.j=(r,t)=>{var a=T.o(e,r)?e[r]:void 0;if(0!==a)if(a)t.push(a[2]);else if(/^(262|602|968)$/.test(r))e[r]=0;else{var o=new Promise(((t,o)=>a=e[r]=[t,o]));t.push(a[2]=o);var n=T.p+T.u(r),i=new Error;T.l(n,(t=>{if(T.o(e,r)&&(0!==(a=e[r])&&(e[r]=void 0),a)){var o=t&&("load"===t.type?"missing":t.type),n=t&&t.target&&t.target.src;i.message="Loading chunk "+r+" failed.\n("+o+": "+n+")",i.name="ChunkLoadError",i.type=o,i.request=n,a[1](i)}}),"chunk-"+r,r)}};var r=(r,t)=>{var a,o,[n,i,u]=t,l=0;if(n.some((r=>0!==e[r]))){for(a in i)T.o(i,a)&&(T.m[a]=i[a]);u&&u(T)}for(r&&r(t);l<n.length;l++)o=n[l],T.o(e,o)&&e[o]&&e[o][0](),e[o]=0},t=self.webpackChunk_jupytergis_jupytergis_core=self.webpackChunk_jupytergis_jupytergis_core||[];t.forEach(r.bind(null,0)),t.push=r.bind(null,t.push.bind(t))})(),T.nc=void 0;var A=T(71650);(_JUPYTERLAB=void 0===_JUPYTERLAB?{}:_JUPYTERLAB)["@jupytergis/jupytergis-core"]=A})();
@@ -1,112 +0,0 @@
1
- jupytergis_core/__init__.py,sha256=sLAtxtMwg2Vwhcq2hCD5uncbwGwcPmpmQmvadLhZsJU,1116
2
- jupytergis_core/_version.py,sha256=5mZtFlP8jOukh3f-P2E13kgXbd530p5BV0VWJJCdLIs,171
3
- jupytergis_core/handler.py,sha256=gi_wvPp1bPX-lpeHj8FR4HloD7tDYCCvDl8SPPPXq4k,1480
4
- jupytergis_core/jgis_ydoc.py,sha256=Yee2whYwttA3eyP_tBCSv3dVrzj0L6-tO2xsjF7NHic,3315
5
- jupytergis_core/schema/__init__.py,sha256=buFl5nFCtnfDJSQQ38CwUZ55p8iCdLiOvnHc4qunYhI,1361
6
- jupytergis_core/schema/interfaces/__init__.py,sha256=TJpvKx2wLzG5BXUbxSk5KMHowDd8F9KsceXVJuTuaGM,97
7
- jupytergis_core/schema/interfaces/geojson.py,sha256=TsBpCev4gRTVRctbY9FCFGrGGfFE7Zb4c5bRcAT9XRU,10347
8
- jupytergis_core/schema/interfaces/geojsonsource.py,sha256=k9d5XA74uBc1iHyleoiNTH4y1Cro-Ez9qdso7vx4fcs,601
9
- jupytergis_core/schema/interfaces/export/__init__.py,sha256=TJpvKx2wLzG5BXUbxSk5KMHowDd8F9KsceXVJuTuaGM,97
10
- jupytergis_core/schema/interfaces/export/exportGeojson.py,sha256=0jMU4jUN_0JH9Xx4wUI004SIMdJVjFASp8T_4NaVgUI,448
11
- jupytergis_core/schema/interfaces/export/exportGeotiff.py,sha256=XJ3XSjPSegHDcsLofox6hoU2vQiUooftzOGTnah8_Ow,814
12
- jupytergis_core/schema/interfaces/processing/__init__.py,sha256=TJpvKx2wLzG5BXUbxSk5KMHowDd8F9KsceXVJuTuaGM,97
13
- jupytergis_core/schema/interfaces/processing/buffer.py,sha256=t-QniETRRN-vK7q5T_ptCDL-l2cDoX7Uxyj10sskkXQ,652
14
- jupytergis_core/schema/interfaces/processing/dissolve.py,sha256=6P0CKdGxByY-1MBPnU-WsBigqf6C0HBa9vzaIWv3UAc,659
15
- jupytergis_core/schema/interfaces/project/__init__.py,sha256=TJpvKx2wLzG5BXUbxSk5KMHowDd8F9KsceXVJuTuaGM,97
16
- jupytergis_core/schema/interfaces/project/jgis.py,sha256=DHwCMf-nJZqeAxyHIyEIROxZUetL7ktDLuTNv_g-3-o,3324
17
- jupytergis_core/schema/interfaces/project/layers/__init__.py,sha256=TJpvKx2wLzG5BXUbxSk5KMHowDd8F9KsceXVJuTuaGM,97
18
- jupytergis_core/schema/interfaces/project/layers/heatmapLayer.py,sha256=sLWZtR3TKmMnD_B7gVxpE-9oxuTnETxxXZ_tiIypHBc,974
19
- jupytergis_core/schema/interfaces/project/layers/hillshadeLayer.py,sha256=sTO21Hz55NNR1zH4dL21LOcoQxB8Je1BjqNR6eFKsdU,511
20
- jupytergis_core/schema/interfaces/project/layers/imageLayer.py,sha256=7RiOIDObGNfdFwtjhXvDiQ6RNvLzCut0vxH5OGrFLx0,536
21
- jupytergis_core/schema/interfaces/project/layers/rasterlayer.py,sha256=FJsBkg7kxmlBnheXjY_z16C3BFRrdvxzl_Ry8aXQ2IA,538
22
- jupytergis_core/schema/interfaces/project/layers/vectorTileLayer.py,sha256=MvDXdFyj66aUCvuBFbq8b0UFvx6zyK0byu41wBwl3M4,836
23
- jupytergis_core/schema/interfaces/project/layers/vectorlayer.py,sha256=Iwp3Ucv-h04IKj74vU5Sf9q-BtF4fwZeVGynHnvjTxM,1608
24
- jupytergis_core/schema/interfaces/project/layers/webGlLayer.py,sha256=Ehiob2C6H25KmWoqmfeOboRp56axhFFJdcNyl0p50-c,1569
25
- jupytergis_core/schema/interfaces/project/sources/__init__.py,sha256=TJpvKx2wLzG5BXUbxSk5KMHowDd8F9KsceXVJuTuaGM,97
26
- jupytergis_core/schema/interfaces/project/sources/geoTiffSource.py,sha256=XhMrEJhdlrBe72xpYzVz_p7WvIJbbPEUnEPOwQPHnBo,724
27
- jupytergis_core/schema/interfaces/project/sources/imageSource.py,sha256=B-oVrmt-oLgbyFBmSRVElGPUrX6YCfQ-wenzs5hWMyM,797
28
- jupytergis_core/schema/interfaces/project/sources/rasterDemSource.py,sha256=FA4ONn9JrFZSkg-vjOGHxw_Vmo0uwNZ0pkBkvCWQj2U,709
29
- jupytergis_core/schema/interfaces/project/sources/rastersource.py,sha256=R2za8HmfU3E9t3vrvl80Kj6o8efj7qVfW6EG5wavglA,1260
30
- jupytergis_core/schema/interfaces/project/sources/shapefileSource.py,sha256=7CZPMBk5uQG9gCYai8F8c7zi0XcUBvTnfqRZOnI1pfg,1002
31
- jupytergis_core/schema/interfaces/project/sources/vectortilesource.py,sha256=CMKb9PgEHM9_oT1D2Z508zTBgqBVaJ9cyE6bZ4bOmmM,918
32
- jupytergis_core/schema/interfaces/project/sources/videoSource.py,sha256=j64ck-QeMZRItF67_mzL1CV1KrwxXFJidrGDCPHv66A,735
33
- jupytergis_core-0.5.0.data/data/etc/jupyter/jupyter_server_config.d/jupytergis_core.json,sha256=CV_X7pENr4UgKxFL4m6f8FGBtrrV5PJazlckMYVrelo,90
34
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/package.json,sha256=eYe2_4IpU6MEKsjXwgV6MlPMV6HXX924zQyaC8cgklo,4081
35
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/schemas/@jupytergis/jupytergis-core/jupytergis-settings.json,sha256=q2ERkg_1m9jXIiKgapXGWJgRpJpkQeniAy8br8C-jWY,323
36
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/schemas/@jupytergis/jupytergis-core/package.json.orig,sha256=uIX0P6Q514ip9fSO9JRolnesPhqiNbcaC7v2wafqXTU,3939
37
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/026680ab0cd1523edc87.png,sha256=AmaAqwzRUj7chz7F6hK2yXJLiEPqOibu6akK58TrixA,366859
38
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/02ff7d503bbd90b21fc4.png,sha256=Av99UDu9kLIfxMpkETnGpUWq5ShYM0IurMXLhPrykZA,54022
39
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/062a9554f6b4caac9713.png,sha256=BiqVVPa0yqyXExBtgWeeMTcPACeYir3ULoOKDFkdGjg,369976
40
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/064f37cecb8130ad66e8.png,sha256=Bk83zsuBMK1m6EmLobbOXNgBSn2FKfdHM3I8cg2azPg,431901
41
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/08da2741746ddab81d04.png,sha256=CNonQXRt2rgdBPPmwxPZQoWyTJygC_FFlui1rDD8NjE,442782
42
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/0c6a0352b82839119f95.png,sha256=DGoDUrgoORGflUg0ec5VPOpJq2HIcZXHWG0Tc_b99zA,462212
43
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/13c485bb93f5567f02fd.png,sha256=E8SFu5P1Vn8C_UkRjegepGTR2Q5OxvZwU7Yqczi5L8Y,352109
44
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/1474207a6b3ca1001e78.png,sha256=FHQgems8oQAeeDOJkw963S94x4PbDI0kXH7NXY8HI78,452291
45
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/14b98240613d5256c621.png,sha256=FLmCQGE9UlbGIRxinVd5df2Ab5B_1LJOO5TN8Zgze6Y,350745
46
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/154.0d16fbe1d1182d138b2c.js,sha256=DRb74dEYLROLLP2aREv72_x72j7Zu5xsKkGYwPLRZ9g,2742
47
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/1b97ea0f2b3af717cffa.png,sha256=G5fqDys69xfP-n7rOFljhFCBL8aveo-MwGgHjPuLscg,317122
48
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/1d440270da19a2f22fee.png,sha256=HUQCcNoZovIv7gEA5ngeodlMG-4S9JOHdB2PtJWby_A,319945
49
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/1ed164e010f3c0306d15.png,sha256=HtFk4BDzwDBtFds-3GFc5mAuI9x5BnWJjFvHSHMUCjc,237793
50
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/2218dfba22fc2b08e948.png,sha256=IhjfuiL8KwjpSDabp4RluScYHx1cj44z3Rm-klkRvuE,130129
51
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/234.2f0fc49f516ad354aa18.js,sha256=Lw_En1Fq01SqGLWrqW0cOk2rJzrgGuD6NGNYKUWtK5M,355
52
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/27.aea9e291ba3dd16790fb.js,sha256=SLTsXf31nRttUhzRmrcjLFEec_sjPLbWxGwE3x5Jb94,63307
53
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/27.aea9e291ba3dd16790fb.js.LICENSE.txt,sha256=dwQ7H60QoWgzT-QRmxxtmVIE1715m87nofpOOY7yeqE,254
54
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/2ab791b60c4058e664f8.png,sha256=KreRtgxAWOZk-ATcGaCu3THqXN1cSfwewykUmrGW2NI,561236
55
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/2b24b6a745c11511f055.png,sha256=KyS2p0XBFRHwVVT7_zThiUAP1xSXgl_7wNVkW3memQQ,568028
56
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/2d676bc0a01c2cd2fccb.png,sha256=LWdrwKAcLNL8yxG2dNwtoXADgijZuvaaelVhCQgN7Ig,279624
57
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/2f02309ea499725612ea.png,sha256=LwIwnqSZclYS6uCB7BPwrQ7-qpFi1F6d6odiaDynHmo,542902
58
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/32c7a73662cceb5bb1d7.png,sha256=MsenNmLM61ux1zTnKQUeboPZrl8wiESG8BL6f9S5Xvw,172231
59
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/350eec4ce9ae4bc10bca.wasm,sha256=NQ7sTOmuS8ELyv2GIUY-BXq9u4-DcvDY4K8G5rhWGDU,28219835
60
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/363ca7c5f78deb6fd033.png,sha256=NjynxfeN62_QM_iVvsjjqCRhWhvhTRnuNb33yD9Roqs,445044
61
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/376.58a6410b7089dea5b0d5.js,sha256=WKZBC3CJ3qWw1e51GxrtT2TbM6De4NtoJ6dO8YXos6w,115771
62
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/377.2ba30d7a93a2a2819b1b.js,sha256=K6MNepOiooGbG6pOHCiCLICNe_rhWHdsPfTw06HzrpI,19577
63
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/3ae0bf244442de7efc35.png,sha256=OuC_JERC3n78NY9skKyDMpQ27lruPw3zyS97kfMLpIc,110946
64
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/3d48be10ffea86eb15de.png,sha256=PUi-EP_qhusV3uzeAW6SKeKROOQ7TpVWUlWxQCEof0A,452348
65
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/407.da5d00862f4879fe3c9c.js,sha256=2l0Ahi9Ief48nBLzyyb6upnyAp-3QcLpE0yF5f1V8lc,1475
66
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/415edc3fa381260cf31e.png,sha256=QV7cP6OBJgzzHuXWpT-CyaZUSVuMDfaiv8EUmaNshr8,18305
67
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/42cbddf5e883673bc4e2.png,sha256=Qsvd9eiDZzvE4k4EzuKJxh8NM_MYZu6l9cBZHUoRpPQ,100312
68
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/432.df2bee6966bdd5a48317.js,sha256=3yvuaWa91aSDFzIuUIRDHZ46GCWmscEwqZ-GSGgfNhc,4065
69
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/472.b2ea9ebc35d5ad4e1fcc.js,sha256=suqevDXVrU4fzK6-gVmSiV5MDXFXXigrXxzzSZn5rno,1712
70
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/527ef171d5df15dc7da5.png,sha256=Un7xcdXfFdx9pZOMmqdqhPcNrQYT922uUfBnwFoXc2Q,50393
71
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/542.477a73b8682de0e8d45e.js,sha256=R3pzuGgt4OjUXoNo5po8xIYuWRnYmQnr7bvQ9AFFOUc,2085
72
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/552.3f267df0d8b2c9ef2c40.js,sha256=PyZ98Niyye8sQLCg9ZM4Z5vHkGWr0eht0unP-lNOsEA,46950
73
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/555.be80e60305924af2e139.js,sha256=voDmAwWSSvLhOR7mxlo_VbksnW3ZcEP1wi2zpEpf2IM,10175
74
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/5bb02252f243f8c7494f.png,sha256=W7AiUvJD-MdJTzb5-6oUqYYHL15EO6Q8EUAPhxpGxsY,68860
75
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/5d181edc3c046e1454a1.png,sha256=XRge3DwEbhRUodWb2qnRg26uplipRcQNPJ_3uRoY3tI,39770
76
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/5f32ad48aefe00e51312.png,sha256=XzKtSK7-AOUTEiTFucknE5RgNRq-Q_Dk4u0yB1zBBRs,283800
77
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/618.86523276f857e0a3362e.js,sha256=hlIydvhX4KM2LoIUZ1oETZ5I15DqAITSjIcQE8sin1s,276
78
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/6e4f6b4d0dfca3bd4450.png,sha256=bk9rTQ38o71EUB8W3nqqTHpydfdBNXyp1LTsoqamOYU,1827
79
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/71d436fb44627b6bfbd7.png,sha256=cdQ2-0Rie2v71zXnyLz2-kehRnO3cQL7emrTyXr24G4,479740
80
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/729.2540a8113c71e8eb28ef.js,sha256=_luUuyCwxbJtJnbzVIu1IyPTBiIGchhryusRs2XOeWU,2094697
81
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/729.2540a8113c71e8eb28ef.js.LICENSE.txt,sha256=QfIchbhCaEqEhlbdrQc6ZQALWIubUc7GmuU6eIcKjXM,1047
82
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/7b225dc2d37cd3582156.png,sha256=eyJdwtN801ghVjAy9u9ShUf7k2p9BE_5_hAQyKE5vME,420024
83
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/803.8b9c4e2f8bed9130b6d0.js,sha256=Pq5yBU3sS3RCOOMJG3G-vL8TUtvajAXzBYwSeuBx7W8,122595
84
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/803.8b9c4e2f8bed9130b6d0.js.LICENSE.txt,sha256=e5rXKlIVk9PRn8cQPr8kfCfz1Paakt2urafpaM7lFGg,95
85
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/843ab141e62516b9df5c.png,sha256=hDqxQeYlFrnfXKeadz-6fR3HrDRnbWq0iAFC5fZc0Mk,531141
86
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/8814e17f6b110e8f3e42.png,sha256=iBThf2sRDo8-QuSMOcEC5GELV-vOVBuolIFeaul3Yeg,12393
87
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/88b2ae0d29edb684eae5.png,sha256=iLKuDSnttoTq5UuchdlEaTehtkEMBYjRaFNJl4gfnGo,142837
88
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/893.0bf9ee057c7e4666c364.js,sha256=C_nuBXx-RmbDZG1ClZ-XNicqRv3BKs9_RZpz0ywBJC8,321769
89
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/971a42d174dd17b9451a.png,sha256=lxpC0XTdF7lFGjg1D95kXGdnntg94bf_7nh_Jh2dZP8,431668
90
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/991.13deb14ad0c10be40859.js,sha256=E96xStDBC-QIWWn8gctAp7EsbanoyM902RoOSU2fdlg,31690
91
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/a3c609f5bff95a7a53be.png,sha256=o8YJ9b_5WnpTvoP-3DJ4TsxRLFj3lidoJSr0xRYkfDc,308268
92
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/a86d626c9ed2e222d190.png,sha256=qG1ibJ7S4iLRkJVSxLzQrZeKDvq-vVcjCO6VTBPFxZY,547995
93
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/a9e286b0c0264a9fc737.png,sha256=qeKGsMAmSp_HN7cbFdpn5nzor3Dta6GI2TNMO5hyuFU,327218
94
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/ab309078b494f850430a.png,sha256=qzCQeLSU-FBDCqE40wX7JP6PCBce7pUjP8HhegICDW4,69110
95
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/b15e3989b7b90b5a8d9d.png,sha256=sV45ibe5C1qNndsNS5QVe8WvyTZLQlUEI0hxepKpskU,24477
96
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/b36717fbb06f21d53b01.png,sha256=s2cX-7BvIdU7AWGKYp3fWjFxCgSQr9rIG5y1OUmb-Xs,257756
97
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/ba4b6e82fe5a816c40a5.png,sha256=uktugv5agWxApf3G1tsN4XGkKPyk_bEl4nCV_2xILTI,108855
98
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/bb2b310570da7a3587e9.png,sha256=uysxBXDaejWH6c7H6nb5ZrNM9FONjROGcFST0558Jmw,1930
99
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/be92bcf7bb99753b4b3d.png,sha256=vpK897uZdTtLPfLqAMXYqx6wpOYyzCpA36cy-FxF1eM,36786
100
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/c2ffa011d7f52a0ddf45.png,sha256=wv-gEdf1Kg3fRRrllbiGcvzL8IHTQNDIo5vSBAP5PVY,568377
101
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/d83457b1b925c1718f6d.png,sha256=2DRXsbklwXGPbaqI2gpSzHS3_KxNOx8RnK5l8C8iBqc,17852
102
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/e473e1e9f20af114bbb4.data,sha256=5HPh6fIK8RS7tJHZz37xVJhnCKfsdjsiGBxeXwEviJ4,11595145
103
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/f2617180c6907263a7ff.png,sha256=8mFxgMaQcmOn_zg5CctHUSEG86rccY22EDiV7K_WXWw,62650
104
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/fe99a6dbf5a71d308989.png,sha256=_pmm2_WnHTCJidssHYSpOnBx-s_0jkj2kZsYRBpzX5o,530602
105
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/remoteEntry.6e9db18c72727800e9ea.js,sha256=bp2xjHJyeADp6o4EBsw0f4EgFlzgF4MzOSwhQEaBDbc,11303
106
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/style.js,sha256=g-u07NhwojMBj_0iNeJCJ_gEBVW7Pmt1VqjTGoAynKk,170
107
- jupytergis_core-0.5.0.data/data/share/jupyter/labextensions/@jupytergis/jupytergis-core/static/third-party-licenses.json,sha256=L3AK92abgRio_ByShtKh6wKxZFcq9R7499t9-20inpc,156869
108
- jupytergis_core-0.5.0.dist-info/METADATA,sha256=9ZPymHXRXyLtHOuSv38NptJaF2NdTD3X7b7kyC9xIPM,2924
109
- jupytergis_core-0.5.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
110
- jupytergis_core-0.5.0.dist-info/entry_points.txt,sha256=kAnz_pUpRTtFL8hibChlanokZH0yEGcBDnbs1hJzHGw,54
111
- jupytergis_core-0.5.0.dist-info/licenses/LICENSE,sha256=VblFgHMsSan_kg15lNsI-YHIqUOUNXGptcoaX2yDDhU,1531
112
- jupytergis_core-0.5.0.dist-info/RECORD,,