esa-snappy 1.0.9__tar.gz → 1.1.1__tar.gz

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 (132) hide show
  1. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/LICENSE +20 -20
  2. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/PKG-INFO +2 -1
  3. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/README.md +20 -20
  4. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/__init__.py +382 -382
  5. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/examples/snappy_bmaths.py +59 -59
  6. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/examples/snappy_flh.py +52 -52
  7. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/examples/snappy_geo_roi.py +54 -54
  8. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/examples/snappy_ndvi.py +76 -76
  9. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/examples/snappy_ndvi_with_masks.py +72 -72
  10. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/examples/snappy_reader_writer_formats.py +19 -19
  11. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/examples/snappy_subset.py +34 -34
  12. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/examples/snappy_write_image.py +103 -103
  13. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snapista/__init__.py +5 -5
  14. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snapista/binning/__init__.py +5 -5
  15. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snapista/binning/aggregator_avg.py +68 -68
  16. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snapista/binning/aggregator_avg_outlier.py +46 -46
  17. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snapista/binning/aggregator_minmax.py +46 -46
  18. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snapista/binning/aggregator_on_max_set.py +47 -47
  19. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snapista/binning/aggregator_percentile.py +56 -56
  20. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snapista/binning/aggregator_sum.py +46 -46
  21. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snapista/binning/aggregators.py +23 -23
  22. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snapista/binning/binning_band.py +39 -39
  23. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snapista/binning/binning_variable.py +52 -52
  24. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snapista/binning/binning_variables.py +34 -34
  25. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snapista/binning/output_bands.py +34 -34
  26. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snapista/graph.py +122 -125
  27. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snapista/graph_io.py +18 -18
  28. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snapista/operator.py +57 -18
  29. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snapista/operatorparams.py +45 -47
  30. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snapista/target_band.py +39 -43
  31. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snapista/target_band_descriptors.py +18 -18
  32. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snappyutil.py +302 -309
  33. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/detector_index.hdr +13 -13
  34. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/l1_flags.hdr +13 -13
  35. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_1.hdr +14 -14
  36. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_10.hdr +14 -14
  37. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_11.hdr +14 -14
  38. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_12.hdr +14 -14
  39. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_13.hdr +14 -14
  40. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_14.hdr +14 -14
  41. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_15.hdr +14 -14
  42. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_2.hdr +14 -14
  43. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_3.hdr +14 -14
  44. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_4.hdr +14 -14
  45. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_5.hdr +14 -14
  46. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_6.hdr +14 -14
  47. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_7.hdr +14 -14
  48. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_8.hdr +14 -14
  49. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_9.hdr +14 -14
  50. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/atm_press.hdr +13 -13
  51. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/dem_alt.hdr +13 -13
  52. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/dem_rough.hdr +13 -13
  53. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/lat_corr.hdr +13 -13
  54. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/latitude.hdr +13 -13
  55. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/lon_corr.hdr +13 -13
  56. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/longitude.hdr +13 -13
  57. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/merid_wind.hdr +13 -13
  58. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/ozone.hdr +13 -13
  59. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/rel_hum.hdr +13 -13
  60. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/sun_azimuth.hdr +13 -13
  61. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/sun_zenith.hdr +13 -13
  62. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/view_azimuth.hdr +13 -13
  63. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/view_zenith.hdr +13 -13
  64. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/zonal_wind.hdr +13 -13
  65. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/vector_data/ground_control_points.csv +2 -2
  66. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/vector_data/pins.csv +2 -2
  67. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.dim +1208 -1208
  68. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/tests/__init__.py +1 -1
  69. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/tests/test_snappy_mem.py +34 -34
  70. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/tests/test_snappy_perf.py +63 -63
  71. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/tests/test_snappy_product.py +103 -103
  72. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy.egg-info/PKG-INFO +2 -1
  73. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy.egg-info/SOURCES.txt +0 -16
  74. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy.egg-info/top_level.txt +1 -0
  75. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/pyproject.toml +56 -55
  76. esa_snappy-1.0.9/esa_snappy/lib/jpy-1.0.0-cp310-cp310-macosx_12_0_universal2.whl +0 -0
  77. esa_snappy-1.0.9/esa_snappy/lib/jpy-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl +0 -0
  78. esa_snappy-1.0.9/esa_snappy/lib/jpy-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +0 -0
  79. esa_snappy-1.0.9/esa_snappy/lib/jpy-1.0.0-cp310-cp310-win_amd64.whl +0 -0
  80. esa_snappy-1.0.9/esa_snappy/lib/jpy-1.0.0-cp311-cp311-macosx_10_9_universal2.whl +0 -0
  81. esa_snappy-1.0.9/esa_snappy/lib/jpy-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl +0 -0
  82. esa_snappy-1.0.9/esa_snappy/lib/jpy-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +0 -0
  83. esa_snappy-1.0.9/esa_snappy/lib/jpy-1.0.0-cp311-cp311-win_amd64.whl +0 -0
  84. esa_snappy-1.0.9/esa_snappy/lib/jpy-1.0.0-cp312-cp312-macosx_10_13_universal2.whl +0 -0
  85. esa_snappy-1.0.9/esa_snappy/lib/jpy-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl +0 -0
  86. esa_snappy-1.0.9/esa_snappy/lib/jpy-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +0 -0
  87. esa_snappy-1.0.9/esa_snappy/lib/jpy-1.0.0-cp312-cp312-win_amd64.whl +0 -0
  88. esa_snappy-1.0.9/esa_snappy/lib/jpy-1.0.0-cp39-cp39-macosx_12_0_universal2.whl +0 -0
  89. esa_snappy-1.0.9/esa_snappy/lib/jpy-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl +0 -0
  90. esa_snappy-1.0.9/esa_snappy/lib/jpy-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +0 -0
  91. esa_snappy-1.0.9/esa_snappy/lib/jpy-1.0.0-cp39-cp39-win_amd64.whl +0 -0
  92. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/examples/__init__.py +0 -0
  93. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snapista/demo/data/subset_0_of_S3A_OL_1_ERR____20160701T092853_20160701T093053_20170919T102725_0119_006_036______MR1_R_NT_002.nc +0 -0
  94. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snapista/demo/data/subset_1_of_S3A_OL_2_WRR____20210304T082509_20210304T090900_20210609T141823_2631_069_121______MAR_R_NT_003.nc +0 -0
  95. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snapista/demo/data/subset_1_of_S3A_OL_2_WRR____20210308T082053_20210308T090445_20210609T070006_2632_069_178______MAR_R_NT_003.nc +0 -0
  96. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snapista/demo/snapista-demo-bandmaths.ipynb +0 -0
  97. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/snapista/demo/snapista-demo-binning.ipynb +0 -0
  98. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/detector_index.img +0 -0
  99. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/l1_flags.img +0 -0
  100. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_1.img +0 -0
  101. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_10.img +0 -0
  102. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_11.img +0 -0
  103. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_12.img +0 -0
  104. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_13.img +0 -0
  105. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_14.img +0 -0
  106. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_15.img +0 -0
  107. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_2.img +0 -0
  108. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_3.img +0 -0
  109. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_4.img +0 -0
  110. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_5.img +0 -0
  111. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_6.img +0 -0
  112. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_7.img +0 -0
  113. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_8.img +0 -0
  114. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/radiance_9.img +0 -0
  115. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/atm_press.img +0 -0
  116. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/dem_alt.img +0 -0
  117. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/dem_rough.img +0 -0
  118. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/lat_corr.img +0 -0
  119. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/latitude.img +0 -0
  120. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/lon_corr.img +0 -0
  121. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/longitude.img +0 -0
  122. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/merid_wind.img +0 -0
  123. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/ozone.img +0 -0
  124. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/rel_hum.img +0 -0
  125. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/sun_azimuth.img +0 -0
  126. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/sun_zenith.img +0 -0
  127. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/view_azimuth.img +0 -0
  128. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/view_zenith.img +0 -0
  129. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy/testdata/MER_FRS_L1B_SUBSET.data/tie_point_grids/zonal_wind.img +0 -0
  130. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy.egg-info/dependency_links.txt +0 -0
  131. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/esa_snappy.egg-info/requires.txt +0 -0
  132. {esa_snappy-1.0.9 → esa_snappy-1.1.1}/setup.cfg +0 -0
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 Brockmann Consult Development
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Brockmann Consult Development
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
21
  SOFTWARE.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: esa_snappy
3
- Version: 1.0.9
3
+ Version: 1.1.1
4
4
  Summary: The Python part of the SNAP Java-Python bridge.
5
5
  Author: Olaf Danne, Norman Fomferra (Brockmann Consult GmbH)
6
6
  License: MIT
@@ -15,6 +15,7 @@ Classifier: Programming Language :: Python :: 3.9
15
15
  Classifier: Programming Language :: Python :: 3.10
16
16
  Classifier: Programming Language :: Python :: 3.11
17
17
  Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
18
19
  Classifier: Topic :: Software Development
19
20
  Classifier: Topic :: Scientific/Engineering
20
21
  Classifier: Typing :: Typed
@@ -1,20 +1,20 @@
1
- # ESA_SNAPPY Package
2
-
3
- This is the *esa_snappy* Python package. It provides the Python part of the SNAP Python support, which is
4
- basically realized by the components:
5
-
6
- - Java module for the configuration of the SNAP - Python interaction.
7
- - Java-Python bridge *jpy* that enables calls from Python into a Java virtual machine.
8
- and, at the same time, the other way round. This bridge is implemented by the
9
- [jpy Project](https://deephaven.io/core/docs/how-to-guides/use-jpy/) and is independent of *esa_snappy*.
10
- - **This package**, which provides:
11
- - Integration of *jpy* and configuration and initialization of the Java-Python bridge for usage with SNAP.
12
- - Extended support for using SNAP functionalities from Python, e.g. running chains of SNAP GPT operators from
13
- xml graphs. Formerly hosted as *SNAPISTA* by [Terradue](https://www.terradue.com/), now integrated into the
14
- *esa_snappy* Python package.
15
-
16
- ## Further reading:
17
-
18
- [Using SNAP in your Python programs](https://senbox.atlassian.net/wiki/spaces/SNAP/pages/24051781/Using+SNAP+in+your+Python+programs)
19
-
20
- [What to consider when writing an Operator in Python](https://senbox.atlassian.net/wiki/spaces/SNAP/pages/42041346/What+to+consider+when+writing+an+Operator+in+Python)
1
+ # ESA_SNAPPY Package
2
+
3
+ This is the *esa_snappy* Python package. It provides the Python part of the SNAP Python support, which is
4
+ basically realized by the components:
5
+
6
+ - Java module for the configuration of the SNAP - Python interaction.
7
+ - Java-Python bridge *jpy* that enables calls from Python into a Java virtual machine.
8
+ and, at the same time, the other way round. This bridge is implemented by the
9
+ [jpy Project](https://deephaven.io/core/docs/how-to-guides/use-jpy/) and is independent of *esa_snappy*.
10
+ - **This package**, which provides:
11
+ - Integration of *jpy* and configuration and initialization of the Java-Python bridge for usage with SNAP.
12
+ - Extended support for using SNAP functionalities from Python, e.g. running chains of SNAP GPT operators from
13
+ xml graphs. Formerly hosted as *SNAPISTA* by [Terradue](https://www.terradue.com/), now integrated into the
14
+ *esa_snappy* Python package.
15
+
16
+ ## Further reading:
17
+
18
+ [Using SNAP in your Python programs](https://senbox.atlassian.net/wiki/spaces/SNAP/pages/24051781/Using+SNAP+in+your+Python+programs)
19
+
20
+ [What to consider when writing an Operator in Python](https://senbox.atlassian.net/wiki/spaces/SNAP/pages/42041346/What+to+consider+when+writing+an+Operator+in+Python)