@aguacerowx/react-native 0.0.42 → 0.0.44

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 (907) hide show
  1. package/android/build.gradle +16 -0
  2. package/android/src/main/cpp/CMakeLists.txt +43 -0
  3. package/android/src/main/cpp/satellite_ktx_jni.cpp +165 -0
  4. package/android/src/main/java/com/aguacerowx/reactnative/AguaceroDebugLog.java +12 -0
  5. package/android/src/main/java/com/aguacerowx/reactnative/AguaceroPackage.java +14 -0
  6. package/android/src/main/java/com/aguacerowx/reactnative/AguaceroStyleLayerIds.java +18 -0
  7. package/android/src/main/java/com/aguacerowx/reactnative/GridRenderLayer.java +0 -22
  8. package/android/src/main/java/com/aguacerowx/reactnative/GridRenderLayerView.java +1 -1
  9. package/android/src/main/java/com/aguacerowx/reactnative/InspectorModule.java +1 -17
  10. package/android/src/main/java/com/aguacerowx/reactnative/NexradRadarLayer.java +906 -0
  11. package/android/src/main/java/com/aguacerowx/reactnative/NexradRadarLayerView.java +515 -0
  12. package/android/src/main/java/com/aguacerowx/reactnative/NexradRadarManager.java +113 -0
  13. package/android/src/main/java/com/aguacerowx/reactnative/RadarFrameGpuMatch.java +117 -0
  14. package/android/src/main/java/com/aguacerowx/reactnative/RadarRayGeometryBuilder.java +202 -0
  15. package/android/src/main/java/com/aguacerowx/reactnative/SatelliteColormap.java +134 -0
  16. package/android/src/main/java/com/aguacerowx/reactnative/SatelliteKtxDecoder.java +75 -0
  17. package/android/src/main/java/com/aguacerowx/reactnative/SatelliteLayer.java +576 -0
  18. package/android/src/main/java/com/aguacerowx/reactnative/SatelliteLayerManager.java +79 -0
  19. package/android/src/main/java/com/aguacerowx/reactnative/SatelliteLayerView.java +355 -0
  20. package/android/src/main/java/com/aguacerowx/reactnative/SatelliteMeshBuilder.java +244 -0
  21. package/android/src/main/java/com/aguacerowx/reactnative/WeatherFrameProcessorModule.java +2 -34
  22. package/android/src/main/res/raw/nexrad_fragment.glsl +87 -0
  23. package/android/src/main/res/raw/nexrad_vertex.glsl +9 -0
  24. package/index.js +2 -1
  25. package/{android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/GridRenderLayerManagerDelegate.java → lib/commonjs/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/NexradRadarLayerManagerDelegate.java} +2 -12
  26. package/{android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/GridRenderLayerManagerInterface.java → lib/commonjs/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/NexradRadarLayerManagerInterface.java} +1 -5
  27. package/lib/commonjs/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/SatelliteLayerManagerDelegate.java +33 -0
  28. package/lib/commonjs/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/SatelliteLayerManagerInterface.java +18 -0
  29. package/lib/commonjs/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/ComponentDescriptors.cpp +2 -0
  30. package/lib/commonjs/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/ComponentDescriptors.h +2 -0
  31. package/lib/commonjs/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/EventEmitters.cpp +2 -0
  32. package/lib/commonjs/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/EventEmitters.h +14 -0
  33. package/lib/commonjs/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/Props.cpp +58 -0
  34. package/lib/commonjs/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/Props.h +36 -0
  35. package/lib/commonjs/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/ShadowNodes.cpp +2 -0
  36. package/lib/commonjs/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/ShadowNodes.h +22 -0
  37. package/lib/commonjs/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/States.h +4 -0
  38. package/lib/commonjs/android/build/generated/source/codegen/schema.json +1 -1
  39. package/lib/commonjs/android/build/intermediates/aar_main_jar/debug/syncDebugLibJars/classes.jar +0 -0
  40. package/lib/commonjs/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar +0 -0
  41. package/lib/commonjs/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar +0 -0
  42. package/lib/commonjs/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +2 -0
  43. package/lib/commonjs/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/raw_nexrad_fragment.glsl.flat +0 -0
  44. package/lib/commonjs/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/raw_nexrad_vertex.glsl.flat +0 -0
  45. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/build_command_aguacero_satellite_ktx.bat +5 -0
  46. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/build_command_targets.bat +9 -0
  47. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/build_model.json +200 -0
  48. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/build_stacktrace_targets.txt +146 -0
  49. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/build_stdout_aguacero_satellite_ktx.txt +2 -0
  50. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/build_stdout_targets.txt +93 -0
  51. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/configure_command.bat +19 -0
  52. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/configure_stderr.txt +0 -0
  53. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/configure_stdout.txt +3 -0
  54. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_121_timing.txt +11 -0
  55. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_3694_timing.txt +9 -0
  56. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_3949_timing.txt +2 -0
  57. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_4184_timing.txt +2 -0
  58. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_4437_timing.txt +2 -0
  59. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_4636_timing.txt +2 -0
  60. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_4886_timing.txt +2 -0
  61. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_5126_timing.txt +2 -0
  62. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_5363_timing.txt +2 -0
  63. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_5601_timing.txt +2 -0
  64. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_5815_timing.txt +2 -0
  65. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_6043_timing.txt +2 -0
  66. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_6291_timing.txt +2 -0
  67. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_6502_timing.txt +2 -0
  68. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_6729_timing.txt +2 -0
  69. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_6939_timing.txt +2 -0
  70. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_7166_timing.txt +2 -0
  71. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_7384_timing.txt +2 -0
  72. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/metadata_generation_record.json +41 -0
  73. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/build_command_aguacero_satellite_ktx.bat +5 -0
  74. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/build_model.json +200 -0
  75. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/build_stderr_aguacero_satellite_ktx.txt +0 -0
  76. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/build_stdout_aguacero_satellite_ktx.txt +2 -0
  77. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/configure_command.bat +19 -0
  78. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/configure_stderr.txt +0 -0
  79. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/configure_stdout.txt +15 -0
  80. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_121_timing.txt +7 -0
  81. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_3942_timing.txt +2 -0
  82. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_4185_timing.txt +2 -0
  83. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_4432_timing.txt +2 -0
  84. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_4641_timing.txt +2 -0
  85. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_4884_timing.txt +2 -0
  86. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_5132_timing.txt +2 -0
  87. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_5358_timing.txt +2 -0
  88. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_5596_timing.txt +2 -0
  89. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_5815_timing.txt +2 -0
  90. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_6044_timing.txt +2 -0
  91. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_6295_timing.txt +2 -0
  92. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_6502_timing.txt +2 -0
  93. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_6717_timing.txt +2 -0
  94. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_6938_timing.txt +2 -0
  95. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_7165_timing.txt +2 -0
  96. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_7377_timing.txt +2 -0
  97. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/metadata_generation_record.json +41 -0
  98. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/build_command_aguacero_satellite_ktx.bat +5 -0
  99. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/build_model.json +200 -0
  100. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/build_stderr_aguacero_satellite_ktx.txt +0 -0
  101. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/build_stdout_aguacero_satellite_ktx.txt +2 -0
  102. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/configure_command.bat +19 -0
  103. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/configure_stderr.txt +0 -0
  104. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/configure_stdout.txt +15 -0
  105. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_121_timing.txt +7 -0
  106. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_3941_timing.txt +2 -0
  107. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_4192_timing.txt +2 -0
  108. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_4431_timing.txt +2 -0
  109. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_4636_timing.txt +2 -0
  110. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_4878_timing.txt +2 -0
  111. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_5124_timing.txt +2 -0
  112. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_5357_timing.txt +2 -0
  113. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_5597_timing.txt +2 -0
  114. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_5813_timing.txt +2 -0
  115. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_6044_timing.txt +2 -0
  116. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_6300_timing.txt +2 -0
  117. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_6502_timing.txt +2 -0
  118. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_6717_timing.txt +2 -0
  119. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_6947_timing.txt +2 -0
  120. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_7165_timing.txt +2 -0
  121. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_7370_timing.txt +2 -0
  122. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/metadata_generation_record.json +41 -0
  123. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/build_command_aguacero_satellite_ktx.bat +5 -0
  124. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/build_model.json +200 -0
  125. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/build_stderr_aguacero_satellite_ktx.txt +0 -0
  126. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/build_stdout_aguacero_satellite_ktx.txt +2 -0
  127. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/configure_command.bat +19 -0
  128. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/configure_stderr.txt +0 -0
  129. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/configure_stdout.txt +15 -0
  130. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_121_timing.txt +7 -0
  131. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_3941_timing.txt +2 -0
  132. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_4192_timing.txt +2 -0
  133. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_4430_timing.txt +2 -0
  134. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_4641_timing.txt +2 -0
  135. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_4882_timing.txt +2 -0
  136. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_5120_timing.txt +2 -0
  137. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_5350_timing.txt +2 -0
  138. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_5605_timing.txt +2 -0
  139. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_5822_timing.txt +2 -0
  140. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_6044_timing.txt +2 -0
  141. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_6300_timing.txt +2 -0
  142. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_6516_timing.txt +2 -0
  143. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_6717_timing.txt +2 -0
  144. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_6942_timing.txt +2 -0
  145. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_7161_timing.txt +2 -0
  146. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_7370_timing.txt +2 -0
  147. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/metadata_generation_record.json +41 -0
  148. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/obj/arm64-v8a/libaguacero_satellite_ktx.so +0 -0
  149. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/obj/arm64-v8a/libc++_shared.so +0 -0
  150. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/obj/armeabi-v7a/libaguacero_satellite_ktx.so +0 -0
  151. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/obj/armeabi-v7a/libc++_shared.so +0 -0
  152. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/obj/x86/libaguacero_satellite_ktx.so +0 -0
  153. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/obj/x86/libc++_shared.so +0 -0
  154. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/obj/x86_64/libaguacero_satellite_ktx.so +0 -0
  155. package/lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/obj/x86_64/libc++_shared.so +0 -0
  156. package/lib/commonjs/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +3 -1
  157. package/lib/commonjs/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +1 -1
  158. package/lib/commonjs/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state +0 -0
  159. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/AguaceroDebugLog.class +0 -0
  160. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/AguaceroPackage.class +0 -0
  161. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/AguaceroStyleLayerIds.class +0 -0
  162. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/GridRenderLayer$VertexInfo.class +0 -0
  163. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/GridRenderLayer.class +0 -0
  164. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/GridRenderLayerView.class +0 -0
  165. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/InspectorModule.class +0 -0
  166. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/NexradRadarLayer$1.class +0 -0
  167. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/NexradRadarLayer$GpuFrameRegisteredListener.class +0 -0
  168. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/NexradRadarLayer$GpuFrameSlot.class +0 -0
  169. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/NexradRadarLayer.class +0 -0
  170. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/NexradRadarLayerView.class +0 -0
  171. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/NexradRadarManager.class +0 -0
  172. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/RadarFrameGpuMatch$1.class +0 -0
  173. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/RadarFrameGpuMatch$Result.class +0 -0
  174. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/RadarFrameGpuMatch.class +0 -0
  175. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/RadarRayGeometryBuilder$Merc.class +0 -0
  176. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/RadarRayGeometryBuilder$Result.class +0 -0
  177. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/RadarRayGeometryBuilder.class +0 -0
  178. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/SatelliteColormap.class +0 -0
  179. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/SatelliteKtxDecoder$Parsed.class +0 -0
  180. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/SatelliteKtxDecoder.class +0 -0
  181. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/SatelliteLayer$GpuSlot.class +0 -0
  182. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/SatelliteLayer$PendingGpuUpload.class +0 -0
  183. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/SatelliteLayer.class +0 -0
  184. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/SatelliteLayerManager.class +0 -0
  185. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/SatelliteLayerView$FrameClass.class +0 -0
  186. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/SatelliteLayerView.class +0 -0
  187. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/SatelliteMeshBuilder$CustomProj.class +0 -0
  188. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/SatelliteMeshBuilder$MeshResult.class +0 -0
  189. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/SatelliteMeshBuilder.class +0 -0
  190. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/WeatherFrameProcessorModule$1.class +0 -0
  191. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/WeatherFrameProcessorModule.class +0 -0
  192. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/NexradRadarLayerManagerDelegate.class +0 -0
  193. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/NexradRadarLayerManagerInterface.class +0 -0
  194. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/SatelliteLayerManagerDelegate.class +0 -0
  195. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/SatelliteLayerManagerInterface.class +0 -0
  196. package/lib/commonjs/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libaguacero_satellite_ktx.so +0 -0
  197. package/lib/commonjs/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libc++_shared.so +0 -0
  198. package/lib/commonjs/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/armeabi-v7a/libaguacero_satellite_ktx.so +0 -0
  199. package/lib/commonjs/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/armeabi-v7a/libc++_shared.so +0 -0
  200. package/lib/commonjs/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86/libaguacero_satellite_ktx.so +0 -0
  201. package/lib/commonjs/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86/libc++_shared.so +0 -0
  202. package/lib/commonjs/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libaguacero_satellite_ktx.so +0 -0
  203. package/lib/commonjs/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libc++_shared.so +0 -0
  204. package/lib/commonjs/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +2 -0
  205. package/lib/commonjs/android/build/intermediates/merged_java_res/debug/mergeDebugJavaResource/feature-aguacerowx-react-native.jar +0 -0
  206. package/lib/commonjs/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libaguacero_satellite_ktx.so +0 -0
  207. package/lib/commonjs/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libc++_shared.so +0 -0
  208. package/lib/commonjs/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/armeabi-v7a/libaguacero_satellite_ktx.so +0 -0
  209. package/lib/commonjs/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/armeabi-v7a/libc++_shared.so +0 -0
  210. package/lib/commonjs/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86/libaguacero_satellite_ktx.so +0 -0
  211. package/lib/commonjs/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86/libc++_shared.so +0 -0
  212. package/lib/commonjs/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libaguacero_satellite_ktx.so +0 -0
  213. package/lib/commonjs/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libc++_shared.so +0 -0
  214. package/lib/commonjs/android/build/intermediates/packaged_res/debug/packageDebugResources/raw/nexrad_fragment.glsl +87 -0
  215. package/lib/commonjs/android/build/intermediates/packaged_res/debug/packageDebugResources/raw/nexrad_vertex.glsl +9 -0
  216. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/AguaceroDebugLog.class +0 -0
  217. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/AguaceroPackage.class +0 -0
  218. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/AguaceroStyleLayerIds.class +0 -0
  219. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/GridRenderLayer$VertexInfo.class +0 -0
  220. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/GridRenderLayer.class +0 -0
  221. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/GridRenderLayerView.class +0 -0
  222. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/InspectorModule.class +0 -0
  223. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/NexradRadarLayer$1.class +0 -0
  224. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/NexradRadarLayer$GpuFrameRegisteredListener.class +0 -0
  225. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/NexradRadarLayer$GpuFrameSlot.class +0 -0
  226. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/NexradRadarLayer.class +0 -0
  227. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/NexradRadarLayerView.class +0 -0
  228. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/NexradRadarManager.class +0 -0
  229. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/RadarFrameGpuMatch$1.class +0 -0
  230. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/RadarFrameGpuMatch$Result.class +0 -0
  231. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/RadarFrameGpuMatch.class +0 -0
  232. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/RadarRayGeometryBuilder$Merc.class +0 -0
  233. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/RadarRayGeometryBuilder$Result.class +0 -0
  234. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/RadarRayGeometryBuilder.class +0 -0
  235. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/SatelliteColormap.class +0 -0
  236. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/SatelliteKtxDecoder$Parsed.class +0 -0
  237. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/SatelliteKtxDecoder.class +0 -0
  238. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/SatelliteLayer$GpuSlot.class +0 -0
  239. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/SatelliteLayer$PendingGpuUpload.class +0 -0
  240. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/SatelliteLayer.class +0 -0
  241. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/SatelliteLayerManager.class +0 -0
  242. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/SatelliteLayerView$FrameClass.class +0 -0
  243. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/SatelliteLayerView.class +0 -0
  244. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/SatelliteMeshBuilder$CustomProj.class +0 -0
  245. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/SatelliteMeshBuilder$MeshResult.class +0 -0
  246. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/SatelliteMeshBuilder.class +0 -0
  247. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/WeatherFrameProcessorModule$1.class +0 -0
  248. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/WeatherFrameProcessorModule.class +0 -0
  249. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/NexradRadarLayerManagerDelegate.class +0 -0
  250. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/NexradRadarLayerManagerInterface.class +0 -0
  251. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/SatelliteLayerManagerDelegate.class +0 -0
  252. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/SatelliteLayerManagerInterface.class +0 -0
  253. package/lib/commonjs/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar +0 -0
  254. package/lib/commonjs/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +2 -0
  255. package/lib/commonjs/android/build/outputs/aar/aguacerowx-react-native-debug.aar +0 -0
  256. package/{android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/AguaceroPackage.class → lib/commonjs/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/AguaceroPackage.class.uniqueId3} +0 -0
  257. package/lib/commonjs/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/InspectorModule.class.uniqueId6 +0 -0
  258. package/lib/commonjs/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NexradRadarLayer$1.class.uniqueId7 +0 -0
  259. package/lib/commonjs/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NexradRadarLayer$GpuFrameRegisteredListener.class.uniqueId2 +0 -0
  260. package/lib/commonjs/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NexradRadarLayer$GpuFrameSlot.class.uniqueId0 +0 -0
  261. package/lib/commonjs/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NexradRadarLayer.class.uniqueId1 +0 -0
  262. package/lib/commonjs/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NexradRadarLayerView.class.uniqueId4 +0 -0
  263. package/lib/commonjs/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NexradRadarManager.class.uniqueId5 +0 -0
  264. package/lib/commonjs/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +0 -0
  265. package/lib/commonjs/android/build.gradle +16 -0
  266. package/lib/commonjs/android/src/main/cpp/CMakeLists.txt +43 -0
  267. package/lib/commonjs/android/src/main/cpp/satellite_ktx_jni.cpp +165 -0
  268. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/AguaceroDebugLog.java +12 -0
  269. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/AguaceroPackage.java +14 -0
  270. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/AguaceroStyleLayerIds.java +18 -0
  271. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/GridRenderLayer.java +0 -22
  272. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/GridRenderLayerView.java +1 -1
  273. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/InspectorModule.java +1 -17
  274. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/NexradRadarLayer.java +906 -0
  275. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/NexradRadarLayerView.java +515 -0
  276. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/NexradRadarManager.java +113 -0
  277. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/RadarFrameGpuMatch.java +117 -0
  278. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/RadarRayGeometryBuilder.java +202 -0
  279. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/SatelliteColormap.java +134 -0
  280. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/SatelliteKtxDecoder.java +75 -0
  281. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/SatelliteLayer.java +576 -0
  282. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/SatelliteLayerManager.java +79 -0
  283. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/SatelliteLayerView.java +355 -0
  284. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/SatelliteMeshBuilder.java +244 -0
  285. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/WeatherFrameProcessorModule.java +2 -34
  286. package/lib/commonjs/android/src/main/res/raw/nexrad_fragment.glsl +87 -0
  287. package/lib/commonjs/android/src/main/res/raw/nexrad_vertex.glsl +9 -0
  288. package/lib/commonjs/index.js +13 -0
  289. package/lib/commonjs/index.js.map +1 -1
  290. package/lib/commonjs/package.json +4 -2
  291. package/lib/commonjs/src/AguaceroContext.js +4 -1
  292. package/lib/commonjs/src/AguaceroContext.js.map +1 -1
  293. package/lib/commonjs/src/GridRenderLayer.js +47 -101
  294. package/lib/commonjs/src/GridRenderLayer.js.map +1 -1
  295. package/lib/commonjs/src/MapManager.js +59 -9
  296. package/lib/commonjs/src/MapManager.js.map +1 -1
  297. package/lib/commonjs/src/MapRegistry.js +22 -3
  298. package/lib/commonjs/src/MapRegistry.js.map +1 -1
  299. package/lib/commonjs/src/NexradRadarLayer.android.js +130 -0
  300. package/lib/commonjs/src/NexradRadarLayer.android.js.map +1 -0
  301. package/lib/commonjs/src/NexradRadarLayer.ios.js +20 -0
  302. package/lib/commonjs/src/NexradRadarLayer.ios.js.map +1 -0
  303. package/lib/commonjs/src/NexradRadarLayerNativeComponent.js +10 -0
  304. package/lib/commonjs/src/NexradRadarLayerNativeComponent.js.map +1 -0
  305. package/lib/commonjs/src/NexradSitesMapLayer.js +94 -0
  306. package/lib/commonjs/src/NexradSitesMapLayer.js.map +1 -0
  307. package/lib/commonjs/src/SatelliteLayer.android.js +68 -0
  308. package/lib/commonjs/src/SatelliteLayer.android.js.map +1 -0
  309. package/lib/commonjs/src/SatelliteLayer.ios.js +21 -0
  310. package/lib/commonjs/src/SatelliteLayer.ios.js.map +1 -0
  311. package/lib/commonjs/src/SatelliteLayerNativeComponent.js +10 -0
  312. package/lib/commonjs/src/SatelliteLayerNativeComponent.js.map +1 -0
  313. package/lib/commonjs/src/WeatherLayerManager.js +389 -58
  314. package/lib/commonjs/src/WeatherLayerManager.js.map +1 -1
  315. package/lib/commonjs/src/nexrad/nexradAndroidController.js +1060 -0
  316. package/lib/commonjs/src/nexrad/nexradAndroidController.js.map +1 -0
  317. package/lib/commonjs/src/nexrad/nexradCrossSectionSampleAtLatLon.bundled.js +98 -0
  318. package/lib/commonjs/src/nexrad/nexradCrossSectionSampleAtLatLon.bundled.js.map +1 -0
  319. package/lib/commonjs/src/nexrad/nexradDiag.js +140 -0
  320. package/lib/commonjs/src/nexrad/nexradDiag.js.map +1 -0
  321. package/lib/commonjs/src/nexrad/nexradLutBuild.js +132 -0
  322. package/lib/commonjs/src/nexrad/nexradLutBuild.js.map +1 -0
  323. package/lib/commonjs/src/nexrad/nexradMapboxFrameOpts.bundled.js +193 -0
  324. package/lib/commonjs/src/nexrad/nexradMapboxFrameOpts.bundled.js.map +1 -0
  325. package/lib/commonjs/src/nexrad/nexradSitesUs.json +1700 -0
  326. package/lib/commonjs/src/nexrad/radarArchiveCore.bundled.js +6446 -0
  327. package/lib/commonjs/src/nexrad/radarArchiveCore.bundled.js.map +1 -0
  328. package/lib/commonjs/src/nexrad/radarDecode.worker.bundled.js +691 -0
  329. package/lib/commonjs/src/nexrad/radarDecode.worker.bundled.js.map +1 -0
  330. package/lib/commonjs/src/nexrad/radarFrameGpuMatch.bundled.js +85 -0
  331. package/lib/commonjs/src/nexrad/radarFrameGpuMatch.bundled.js.map +1 -0
  332. package/lib/commonjs/src/nws/NwsAlertsOverlay.android.js +450 -0
  333. package/lib/commonjs/src/nws/NwsAlertsOverlay.android.js.map +1 -0
  334. package/lib/commonjs/src/nws/NwsAlertsOverlay.ios.js +14 -0
  335. package/lib/commonjs/src/nws/NwsAlertsOverlay.ios.js.map +1 -0
  336. package/lib/commonjs/src/nws/NwsAlertsOverlay.js +13 -0
  337. package/lib/commonjs/src/nws/NwsAlertsOverlay.js.map +1 -0
  338. package/lib/commonjs/src/nws/eventSourceRnPolyfill.js +184 -0
  339. package/lib/commonjs/src/nws/eventSourceRnPolyfill.js.map +1 -0
  340. package/lib/commonjs/src/nws/nwsAndroidConstants.js +15 -0
  341. package/lib/commonjs/src/nws/nwsAndroidConstants.js.map +1 -0
  342. package/lib/commonjs/src/satellite/satelliteAndroidController.js +169 -0
  343. package/lib/commonjs/src/satellite/satelliteAndroidController.js.map +1 -0
  344. package/lib/module/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/NexradRadarLayerManagerDelegate.java +33 -0
  345. package/lib/module/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/NexradRadarLayerManagerInterface.java +18 -0
  346. package/lib/module/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/SatelliteLayerManagerDelegate.java +33 -0
  347. package/lib/module/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/SatelliteLayerManagerInterface.java +18 -0
  348. package/lib/module/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/ComponentDescriptors.cpp +2 -0
  349. package/lib/module/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/ComponentDescriptors.h +2 -0
  350. package/lib/module/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/EventEmitters.cpp +2 -0
  351. package/lib/module/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/EventEmitters.h +14 -0
  352. package/lib/module/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/Props.cpp +58 -0
  353. package/lib/module/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/Props.h +36 -0
  354. package/lib/module/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/ShadowNodes.cpp +2 -0
  355. package/lib/module/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/ShadowNodes.h +22 -0
  356. package/lib/module/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/States.h +4 -0
  357. package/lib/module/android/build/generated/source/codegen/schema.json +1 -1
  358. package/lib/module/android/build/intermediates/aar_main_jar/debug/syncDebugLibJars/classes.jar +0 -0
  359. package/lib/module/android/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt +0 -0
  360. package/lib/module/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar +0 -0
  361. package/lib/module/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar +0 -0
  362. package/lib/module/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +2 -0
  363. package/lib/module/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/raw_nexrad_fragment.glsl.flat +0 -0
  364. package/lib/module/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/raw_nexrad_vertex.glsl.flat +0 -0
  365. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/build_command_aguacero_satellite_ktx.bat +5 -0
  366. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/build_command_targets.bat +9 -0
  367. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/build_model.json +200 -0
  368. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/build_stacktrace_targets.txt +146 -0
  369. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/build_stderr_aguacero_satellite_ktx.txt +0 -0
  370. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/build_stderr_targets.txt +0 -0
  371. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/build_stdout_aguacero_satellite_ktx.txt +2 -0
  372. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/build_stdout_targets.txt +93 -0
  373. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/configure_command.bat +19 -0
  374. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/configure_stderr.txt +0 -0
  375. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/configure_stdout.txt +3 -0
  376. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_121_timing.txt +11 -0
  377. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_3694_timing.txt +9 -0
  378. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_3949_timing.txt +2 -0
  379. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_4184_timing.txt +2 -0
  380. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_4437_timing.txt +2 -0
  381. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_4636_timing.txt +2 -0
  382. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_4886_timing.txt +2 -0
  383. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_5126_timing.txt +2 -0
  384. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_5363_timing.txt +2 -0
  385. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_5601_timing.txt +2 -0
  386. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_5815_timing.txt +2 -0
  387. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_6043_timing.txt +2 -0
  388. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_6291_timing.txt +2 -0
  389. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_6502_timing.txt +2 -0
  390. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_6729_timing.txt +2 -0
  391. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_6939_timing.txt +2 -0
  392. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_7166_timing.txt +2 -0
  393. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/generate_cxx_metadata_7384_timing.txt +2 -0
  394. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/metadata_generation_record.json +41 -0
  395. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/build_command_aguacero_satellite_ktx.bat +5 -0
  396. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/build_model.json +200 -0
  397. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/build_stderr_aguacero_satellite_ktx.txt +0 -0
  398. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/build_stdout_aguacero_satellite_ktx.txt +2 -0
  399. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/configure_command.bat +19 -0
  400. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/configure_stderr.txt +0 -0
  401. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/configure_stdout.txt +15 -0
  402. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_121_timing.txt +7 -0
  403. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_3942_timing.txt +2 -0
  404. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_4185_timing.txt +2 -0
  405. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_4432_timing.txt +2 -0
  406. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_4641_timing.txt +2 -0
  407. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_4884_timing.txt +2 -0
  408. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_5132_timing.txt +2 -0
  409. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_5358_timing.txt +2 -0
  410. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_5596_timing.txt +2 -0
  411. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_5815_timing.txt +2 -0
  412. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_6044_timing.txt +2 -0
  413. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_6295_timing.txt +2 -0
  414. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_6502_timing.txt +2 -0
  415. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_6717_timing.txt +2 -0
  416. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_6938_timing.txt +2 -0
  417. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_7165_timing.txt +2 -0
  418. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/generate_cxx_metadata_7377_timing.txt +2 -0
  419. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/armeabi-v7a/metadata_generation_record.json +41 -0
  420. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/build_command_aguacero_satellite_ktx.bat +5 -0
  421. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/build_model.json +200 -0
  422. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/build_stderr_aguacero_satellite_ktx.txt +0 -0
  423. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/build_stdout_aguacero_satellite_ktx.txt +2 -0
  424. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/configure_command.bat +19 -0
  425. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/configure_stderr.txt +0 -0
  426. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/configure_stdout.txt +15 -0
  427. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_121_timing.txt +7 -0
  428. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_3941_timing.txt +2 -0
  429. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_4192_timing.txt +2 -0
  430. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_4431_timing.txt +2 -0
  431. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_4636_timing.txt +2 -0
  432. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_4878_timing.txt +2 -0
  433. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_5124_timing.txt +2 -0
  434. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_5357_timing.txt +2 -0
  435. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_5597_timing.txt +2 -0
  436. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_5813_timing.txt +2 -0
  437. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_6044_timing.txt +2 -0
  438. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_6300_timing.txt +2 -0
  439. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_6502_timing.txt +2 -0
  440. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_6717_timing.txt +2 -0
  441. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_6947_timing.txt +2 -0
  442. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_7165_timing.txt +2 -0
  443. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/generate_cxx_metadata_7370_timing.txt +2 -0
  444. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86/metadata_generation_record.json +41 -0
  445. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/build_command_aguacero_satellite_ktx.bat +5 -0
  446. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/build_model.json +200 -0
  447. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/build_stderr_aguacero_satellite_ktx.txt +0 -0
  448. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/build_stdout_aguacero_satellite_ktx.txt +2 -0
  449. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/configure_command.bat +19 -0
  450. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/configure_stderr.txt +0 -0
  451. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/configure_stdout.txt +15 -0
  452. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_121_timing.txt +7 -0
  453. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_3941_timing.txt +2 -0
  454. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_4192_timing.txt +2 -0
  455. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_4430_timing.txt +2 -0
  456. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_4641_timing.txt +2 -0
  457. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_4882_timing.txt +2 -0
  458. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_5120_timing.txt +2 -0
  459. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_5350_timing.txt +2 -0
  460. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_5605_timing.txt +2 -0
  461. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_5822_timing.txt +2 -0
  462. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_6044_timing.txt +2 -0
  463. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_6300_timing.txt +2 -0
  464. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_6516_timing.txt +2 -0
  465. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_6717_timing.txt +2 -0
  466. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_6942_timing.txt +2 -0
  467. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_7161_timing.txt +2 -0
  468. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/generate_cxx_metadata_7370_timing.txt +2 -0
  469. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/logs/x86_64/metadata_generation_record.json +41 -0
  470. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/obj/arm64-v8a/libaguacero_satellite_ktx.so +0 -0
  471. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/obj/arm64-v8a/libc++_shared.so +0 -0
  472. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/obj/armeabi-v7a/libaguacero_satellite_ktx.so +0 -0
  473. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/obj/armeabi-v7a/libc++_shared.so +0 -0
  474. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/obj/x86/libaguacero_satellite_ktx.so +0 -0
  475. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/obj/x86/libc++_shared.so +0 -0
  476. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/obj/x86_64/libaguacero_satellite_ktx.so +0 -0
  477. package/lib/module/android/build/intermediates/cxx/Debug/4j656ei4/obj/x86_64/libc++_shared.so +0 -0
  478. package/lib/module/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +3 -1
  479. package/lib/module/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +1 -1
  480. package/lib/module/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state +0 -0
  481. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/AguaceroDebugLog.class +0 -0
  482. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/AguaceroPackage.class +0 -0
  483. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/AguaceroStyleLayerIds.class +0 -0
  484. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/GridRenderLayer$VertexInfo.class +0 -0
  485. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/GridRenderLayer.class +0 -0
  486. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/GridRenderLayerView.class +0 -0
  487. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/InspectorModule.class +0 -0
  488. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/NexradRadarLayer$1.class +0 -0
  489. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/NexradRadarLayer$GpuFrameRegisteredListener.class +0 -0
  490. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/NexradRadarLayer$GpuFrameSlot.class +0 -0
  491. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/NexradRadarLayer.class +0 -0
  492. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/NexradRadarLayerView.class +0 -0
  493. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/NexradRadarManager.class +0 -0
  494. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/RadarFrameGpuMatch$1.class +0 -0
  495. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/RadarFrameGpuMatch$Result.class +0 -0
  496. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/RadarFrameGpuMatch.class +0 -0
  497. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/RadarRayGeometryBuilder$Merc.class +0 -0
  498. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/RadarRayGeometryBuilder$Result.class +0 -0
  499. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/RadarRayGeometryBuilder.class +0 -0
  500. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/SatelliteColormap.class +0 -0
  501. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/SatelliteKtxDecoder$Parsed.class +0 -0
  502. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/SatelliteKtxDecoder.class +0 -0
  503. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/SatelliteLayer$GpuSlot.class +0 -0
  504. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/SatelliteLayer$PendingGpuUpload.class +0 -0
  505. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/SatelliteLayer.class +0 -0
  506. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/SatelliteLayerManager.class +0 -0
  507. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/SatelliteLayerView$FrameClass.class +0 -0
  508. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/SatelliteLayerView.class +0 -0
  509. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/SatelliteMeshBuilder$CustomProj.class +0 -0
  510. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/SatelliteMeshBuilder$MeshResult.class +0 -0
  511. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/SatelliteMeshBuilder.class +0 -0
  512. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/WeatherFrameProcessorModule$1.class +0 -0
  513. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/WeatherFrameProcessorModule.class +0 -0
  514. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/NexradRadarLayerManagerDelegate.class +0 -0
  515. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/NexradRadarLayerManagerInterface.class +0 -0
  516. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/SatelliteLayerManagerDelegate.class +0 -0
  517. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/SatelliteLayerManagerInterface.class +0 -0
  518. package/lib/module/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libaguacero_satellite_ktx.so +0 -0
  519. package/lib/module/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libc++_shared.so +0 -0
  520. package/lib/module/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/armeabi-v7a/libaguacero_satellite_ktx.so +0 -0
  521. package/lib/module/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/armeabi-v7a/libc++_shared.so +0 -0
  522. package/lib/module/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86/libaguacero_satellite_ktx.so +0 -0
  523. package/lib/module/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86/libc++_shared.so +0 -0
  524. package/lib/module/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libaguacero_satellite_ktx.so +0 -0
  525. package/lib/module/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libc++_shared.so +0 -0
  526. package/lib/module/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +2 -0
  527. package/lib/module/android/build/intermediates/merged_java_res/debug/mergeDebugJavaResource/feature-aguacerowx-react-native.jar +0 -0
  528. package/lib/module/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libaguacero_satellite_ktx.so +0 -0
  529. package/lib/module/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libc++_shared.so +0 -0
  530. package/lib/module/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/armeabi-v7a/libaguacero_satellite_ktx.so +0 -0
  531. package/lib/module/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/armeabi-v7a/libc++_shared.so +0 -0
  532. package/lib/module/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86/libaguacero_satellite_ktx.so +0 -0
  533. package/lib/module/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86/libc++_shared.so +0 -0
  534. package/lib/module/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libaguacero_satellite_ktx.so +0 -0
  535. package/lib/module/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libc++_shared.so +0 -0
  536. package/lib/module/android/build/intermediates/packaged_res/debug/packageDebugResources/raw/nexrad_fragment.glsl +87 -0
  537. package/lib/module/android/build/intermediates/packaged_res/debug/packageDebugResources/raw/nexrad_vertex.glsl +9 -0
  538. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/AguaceroDebugLog.class +0 -0
  539. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/AguaceroPackage.class +0 -0
  540. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/AguaceroStyleLayerIds.class +0 -0
  541. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/GridRenderLayer$VertexInfo.class +0 -0
  542. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/GridRenderLayer.class +0 -0
  543. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/GridRenderLayerView.class +0 -0
  544. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/InspectorModule.class +0 -0
  545. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/NexradRadarLayer$1.class +0 -0
  546. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/NexradRadarLayer$GpuFrameRegisteredListener.class +0 -0
  547. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/NexradRadarLayer$GpuFrameSlot.class +0 -0
  548. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/NexradRadarLayer.class +0 -0
  549. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/NexradRadarLayerView.class +0 -0
  550. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/NexradRadarManager.class +0 -0
  551. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/RadarFrameGpuMatch$1.class +0 -0
  552. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/RadarFrameGpuMatch$Result.class +0 -0
  553. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/RadarFrameGpuMatch.class +0 -0
  554. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/RadarRayGeometryBuilder$Merc.class +0 -0
  555. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/RadarRayGeometryBuilder$Result.class +0 -0
  556. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/RadarRayGeometryBuilder.class +0 -0
  557. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/SatelliteColormap.class +0 -0
  558. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/SatelliteKtxDecoder$Parsed.class +0 -0
  559. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/SatelliteKtxDecoder.class +0 -0
  560. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/SatelliteLayer$GpuSlot.class +0 -0
  561. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/SatelliteLayer$PendingGpuUpload.class +0 -0
  562. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/SatelliteLayer.class +0 -0
  563. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/SatelliteLayerManager.class +0 -0
  564. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/SatelliteLayerView$FrameClass.class +0 -0
  565. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/SatelliteLayerView.class +0 -0
  566. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/SatelliteMeshBuilder$CustomProj.class +0 -0
  567. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/SatelliteMeshBuilder$MeshResult.class +0 -0
  568. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/SatelliteMeshBuilder.class +0 -0
  569. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/WeatherFrameProcessorModule$1.class +0 -0
  570. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/WeatherFrameProcessorModule.class +0 -0
  571. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/NexradRadarLayerManagerDelegate.class +0 -0
  572. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/NexradRadarLayerManagerInterface.class +0 -0
  573. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/SatelliteLayerManagerDelegate.class +0 -0
  574. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/SatelliteLayerManagerInterface.class +0 -0
  575. package/lib/module/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar +0 -0
  576. package/lib/module/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +2 -0
  577. package/lib/module/android/build/outputs/aar/aguacerowx-react-native-debug.aar +0 -0
  578. package/lib/{commonjs/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/AguaceroPackage.class.uniqueId2 → module/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/AguaceroPackage.class.uniqueId3} +0 -0
  579. package/lib/module/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/InspectorModule.class.uniqueId6 +0 -0
  580. package/lib/module/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NexradRadarLayer$1.class.uniqueId7 +0 -0
  581. package/lib/module/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NexradRadarLayer$GpuFrameRegisteredListener.class.uniqueId2 +0 -0
  582. package/lib/module/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NexradRadarLayer$GpuFrameSlot.class.uniqueId0 +0 -0
  583. package/lib/module/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NexradRadarLayer.class.uniqueId1 +0 -0
  584. package/lib/module/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NexradRadarLayerView.class.uniqueId4 +0 -0
  585. package/lib/module/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NexradRadarManager.class.uniqueId5 +0 -0
  586. package/lib/module/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +0 -0
  587. package/lib/module/android/build.gradle +16 -0
  588. package/lib/module/android/src/main/cpp/CMakeLists.txt +43 -0
  589. package/lib/module/android/src/main/cpp/satellite_ktx_jni.cpp +165 -0
  590. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/AguaceroDebugLog.java +12 -0
  591. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/AguaceroPackage.java +14 -0
  592. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/AguaceroStyleLayerIds.java +18 -0
  593. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/GridRenderLayer.java +0 -22
  594. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/GridRenderLayerView.java +1 -1
  595. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/InspectorModule.java +1 -17
  596. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/NexradRadarLayer.java +906 -0
  597. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/NexradRadarLayerView.java +515 -0
  598. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/NexradRadarManager.java +113 -0
  599. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/RadarFrameGpuMatch.java +117 -0
  600. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/RadarRayGeometryBuilder.java +202 -0
  601. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/SatelliteColormap.java +134 -0
  602. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/SatelliteKtxDecoder.java +75 -0
  603. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/SatelliteLayer.java +576 -0
  604. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/SatelliteLayerManager.java +79 -0
  605. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/SatelliteLayerView.java +355 -0
  606. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/SatelliteMeshBuilder.java +244 -0
  607. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/WeatherFrameProcessorModule.java +2 -34
  608. package/lib/module/android/src/main/res/raw/nexrad_fragment.glsl +87 -0
  609. package/lib/module/android/src/main/res/raw/nexrad_vertex.glsl +9 -0
  610. package/lib/module/index.js +1 -0
  611. package/lib/module/index.js.map +1 -1
  612. package/lib/module/lib/commonjs/android/build.gradle +16 -0
  613. package/lib/module/lib/commonjs/index.js +13 -0
  614. package/lib/module/lib/commonjs/index.js.map +1 -1
  615. package/lib/module/lib/commonjs/ios/compiled-shaders/{Shaders-device.metallib → Shaders-simulator.metallib} +0 -0
  616. package/lib/module/lib/commonjs/package.json +4 -2
  617. package/lib/module/lib/commonjs/src/AguaceroContext.js +4 -1
  618. package/lib/module/lib/commonjs/src/AguaceroContext.js.map +1 -1
  619. package/lib/module/lib/commonjs/src/GridRenderLayer.js +47 -101
  620. package/lib/module/lib/commonjs/src/GridRenderLayer.js.map +1 -1
  621. package/lib/module/lib/commonjs/src/MapManager.js +59 -9
  622. package/lib/module/lib/commonjs/src/MapManager.js.map +1 -1
  623. package/lib/module/lib/commonjs/src/MapRegistry.js +22 -3
  624. package/lib/module/lib/commonjs/src/MapRegistry.js.map +1 -1
  625. package/lib/module/lib/commonjs/src/NexradRadarLayer.android.js +153 -0
  626. package/lib/module/lib/commonjs/src/NexradRadarLayer.android.js.map +1 -0
  627. package/lib/module/lib/commonjs/src/NexradRadarLayer.ios.js +39 -0
  628. package/lib/module/lib/commonjs/src/NexradRadarLayer.ios.js.map +1 -0
  629. package/lib/module/lib/commonjs/src/NexradRadarLayerNativeComponent.js +14 -0
  630. package/lib/module/lib/commonjs/src/NexradRadarLayerNativeComponent.js.map +1 -0
  631. package/lib/module/lib/commonjs/src/NexradSitesMapLayer.js +98 -0
  632. package/lib/module/lib/commonjs/src/NexradSitesMapLayer.js.map +1 -0
  633. package/lib/module/lib/commonjs/src/SatelliteLayer.android.js +91 -0
  634. package/lib/module/lib/commonjs/src/SatelliteLayer.android.js.map +1 -0
  635. package/lib/module/lib/commonjs/src/SatelliteLayer.ios.js +40 -0
  636. package/lib/module/lib/commonjs/src/SatelliteLayer.ios.js.map +1 -0
  637. package/lib/module/lib/commonjs/src/SatelliteLayerNativeComponent.js +14 -0
  638. package/lib/module/lib/commonjs/src/SatelliteLayerNativeComponent.js.map +1 -0
  639. package/lib/module/lib/commonjs/src/WeatherLayerManager.js +393 -58
  640. package/lib/module/lib/commonjs/src/WeatherLayerManager.js.map +1 -1
  641. package/lib/module/lib/commonjs/src/nexrad/nexradAndroidController.js +1060 -0
  642. package/lib/module/lib/commonjs/src/nexrad/nexradAndroidController.js.map +1 -0
  643. package/lib/module/lib/commonjs/src/nexrad/nexradCrossSectionSampleAtLatLon.bundled.js +98 -0
  644. package/lib/module/lib/commonjs/src/nexrad/nexradCrossSectionSampleAtLatLon.bundled.js.map +1 -0
  645. package/lib/module/lib/commonjs/src/nexrad/nexradDiag.js +140 -0
  646. package/lib/module/lib/commonjs/src/nexrad/nexradDiag.js.map +1 -0
  647. package/lib/module/lib/commonjs/src/nexrad/nexradLutBuild.js +132 -0
  648. package/lib/module/lib/commonjs/src/nexrad/nexradLutBuild.js.map +1 -0
  649. package/lib/module/lib/commonjs/src/nexrad/nexradMapboxFrameOpts.bundled.js +193 -0
  650. package/lib/module/lib/commonjs/src/nexrad/nexradMapboxFrameOpts.bundled.js.map +1 -0
  651. package/lib/module/lib/commonjs/src/nexrad/nexradSitesUs.json +1700 -0
  652. package/lib/module/lib/commonjs/src/nexrad/radarArchiveCore.bundled.js +6446 -0
  653. package/lib/module/lib/commonjs/src/nexrad/radarArchiveCore.bundled.js.map +1 -0
  654. package/lib/module/lib/commonjs/src/nexrad/radarDecode.worker.bundled.js +691 -0
  655. package/lib/module/lib/commonjs/src/nexrad/radarDecode.worker.bundled.js.map +1 -0
  656. package/lib/module/lib/commonjs/src/nexrad/radarFrameGpuMatch.bundled.js +85 -0
  657. package/lib/module/lib/commonjs/src/nexrad/radarFrameGpuMatch.bundled.js.map +1 -0
  658. package/lib/module/lib/commonjs/src/nws/NwsAlertsOverlay.android.js +473 -0
  659. package/lib/module/lib/commonjs/src/nws/NwsAlertsOverlay.android.js.map +1 -0
  660. package/lib/module/lib/commonjs/src/nws/NwsAlertsOverlay.ios.js +14 -0
  661. package/lib/module/lib/commonjs/src/nws/NwsAlertsOverlay.ios.js.map +1 -0
  662. package/lib/module/lib/commonjs/src/nws/NwsAlertsOverlay.js +13 -0
  663. package/lib/module/lib/commonjs/src/nws/NwsAlertsOverlay.js.map +1 -0
  664. package/lib/module/lib/commonjs/src/nws/eventSourceRnPolyfill.js +184 -0
  665. package/lib/module/lib/commonjs/src/nws/eventSourceRnPolyfill.js.map +1 -0
  666. package/lib/module/lib/commonjs/src/nws/nwsAndroidConstants.js +15 -0
  667. package/lib/module/lib/commonjs/src/nws/nwsAndroidConstants.js.map +1 -0
  668. package/lib/module/lib/commonjs/src/satellite/satelliteAndroidController.js +169 -0
  669. package/lib/module/lib/commonjs/src/satellite/satelliteAndroidController.js.map +1 -0
  670. package/lib/module/package.json +4 -2
  671. package/lib/module/src/AguaceroContext.js +4 -1
  672. package/lib/module/src/AguaceroContext.js.map +1 -1
  673. package/lib/module/src/GridRenderLayer.js +49 -104
  674. package/lib/module/src/GridRenderLayer.js.map +1 -1
  675. package/lib/module/src/MapManager.js +59 -9
  676. package/lib/module/src/MapManager.js.map +1 -1
  677. package/lib/module/src/MapRegistry.js +22 -3
  678. package/lib/module/src/MapRegistry.js.map +1 -1
  679. package/lib/module/src/NexradRadarLayer.android.js +122 -0
  680. package/lib/module/src/NexradRadarLayer.android.js.map +1 -0
  681. package/lib/module/src/NexradRadarLayer.ios.js +14 -0
  682. package/lib/module/src/NexradRadarLayer.ios.js.map +1 -0
  683. package/lib/module/src/NexradRadarLayerNativeComponent.js +3 -0
  684. package/lib/module/src/NexradRadarLayerNativeComponent.js.map +1 -0
  685. package/lib/module/src/NexradSitesMapLayer.js +86 -0
  686. package/lib/module/src/NexradSitesMapLayer.js.map +1 -0
  687. package/lib/module/src/SatelliteLayer.android.js +60 -0
  688. package/lib/module/src/SatelliteLayer.android.js.map +1 -0
  689. package/lib/module/src/SatelliteLayer.ios.js +15 -0
  690. package/lib/module/src/SatelliteLayer.ios.js.map +1 -0
  691. package/lib/module/src/SatelliteLayerNativeComponent.js +3 -0
  692. package/lib/module/src/SatelliteLayerNativeComponent.js.map +1 -0
  693. package/lib/module/src/WeatherLayerManager.js +391 -61
  694. package/lib/module/src/WeatherLayerManager.js.map +1 -1
  695. package/lib/module/src/nexrad/nexradAndroidController.js +1052 -0
  696. package/lib/module/src/nexrad/nexradAndroidController.js.map +1 -0
  697. package/lib/module/src/nexrad/nexradCrossSectionSampleAtLatLon.bundled.js +93 -0
  698. package/lib/module/src/nexrad/nexradCrossSectionSampleAtLatLon.bundled.js.map +1 -0
  699. package/lib/module/src/nexrad/nexradDiag.js +130 -0
  700. package/lib/module/src/nexrad/nexradDiag.js.map +1 -0
  701. package/lib/module/src/nexrad/nexradLutBuild.js +125 -0
  702. package/lib/module/src/nexrad/nexradLutBuild.js.map +1 -0
  703. package/lib/module/src/nexrad/nexradMapboxFrameOpts.bundled.js +186 -0
  704. package/lib/module/src/nexrad/nexradMapboxFrameOpts.bundled.js.map +1 -0
  705. package/lib/module/src/nexrad/nexradSitesUs.json +1700 -0
  706. package/lib/module/src/nexrad/radarArchiveCore.bundled.js +6434 -0
  707. package/lib/module/src/nexrad/radarArchiveCore.bundled.js.map +1 -0
  708. package/lib/module/src/nexrad/radarDecode.worker.bundled.js +689 -0
  709. package/lib/module/src/nexrad/radarDecode.worker.bundled.js.map +1 -0
  710. package/lib/module/src/nexrad/radarFrameGpuMatch.bundled.js +78 -0
  711. package/lib/module/src/nexrad/radarFrameGpuMatch.bundled.js.map +1 -0
  712. package/lib/module/src/nws/NwsAlertsOverlay.android.js +441 -0
  713. package/lib/module/src/nws/NwsAlertsOverlay.android.js.map +1 -0
  714. package/lib/module/src/nws/NwsAlertsOverlay.ios.js +8 -0
  715. package/lib/module/src/nws/NwsAlertsOverlay.ios.js.map +1 -0
  716. package/lib/module/src/nws/NwsAlertsOverlay.js +7 -0
  717. package/lib/module/src/nws/NwsAlertsOverlay.js.map +1 -0
  718. package/lib/module/src/nws/eventSourceRnPolyfill.js +178 -0
  719. package/lib/module/src/nws/eventSourceRnPolyfill.js.map +1 -0
  720. package/lib/module/src/nws/nwsAndroidConstants.js +9 -0
  721. package/lib/module/src/nws/nwsAndroidConstants.js.map +1 -0
  722. package/lib/module/src/satellite/satelliteAndroidController.js +160 -0
  723. package/lib/module/src/satellite/satelliteAndroidController.js.map +1 -0
  724. package/lib/typescript/index.d.ts +1 -0
  725. package/lib/typescript/src/AguaceroContext.d.ts +4 -0
  726. package/lib/typescript/src/AguaceroContext.d.ts.map +1 -1
  727. package/lib/typescript/src/GridRenderLayer.d.ts.map +1 -1
  728. package/lib/typescript/src/MapManager.d.ts +11 -0
  729. package/lib/typescript/src/MapManager.d.ts.map +1 -1
  730. package/lib/typescript/src/MapRegistry.d.ts +6 -0
  731. package/lib/typescript/src/MapRegistry.d.ts.map +1 -1
  732. package/lib/typescript/src/NexradRadarLayer.android.d.ts +3 -0
  733. package/lib/typescript/src/NexradRadarLayer.android.d.ts.map +1 -0
  734. package/lib/typescript/src/NexradRadarLayer.ios.d.ts +4 -0
  735. package/lib/typescript/src/NexradRadarLayer.ios.d.ts.map +1 -0
  736. package/lib/typescript/src/NexradRadarLayerNativeComponent.d.ts +8 -0
  737. package/lib/typescript/src/NexradRadarLayerNativeComponent.d.ts.map +1 -0
  738. package/lib/typescript/src/NexradSitesMapLayer.d.ts +12 -0
  739. package/lib/typescript/src/NexradSitesMapLayer.d.ts.map +1 -0
  740. package/lib/typescript/src/SatelliteLayer.android.d.ts +3 -0
  741. package/lib/typescript/src/SatelliteLayer.android.d.ts.map +1 -0
  742. package/lib/typescript/src/SatelliteLayer.ios.d.ts +4 -0
  743. package/lib/typescript/src/SatelliteLayer.ios.d.ts.map +1 -0
  744. package/lib/typescript/src/SatelliteLayerNativeComponent.d.ts +8 -0
  745. package/lib/typescript/src/SatelliteLayerNativeComponent.d.ts.map +1 -0
  746. package/lib/typescript/src/WeatherLayerManager.d.ts.map +1 -1
  747. package/lib/typescript/src/nexrad/nexradAndroidController.d.ts +135 -0
  748. package/lib/typescript/src/nexrad/nexradAndroidController.d.ts.map +1 -0
  749. package/lib/typescript/src/nexrad/nexradCrossSectionSampleAtLatLon.bundled.d.ts +5 -0
  750. package/lib/typescript/src/nexrad/nexradCrossSectionSampleAtLatLon.bundled.d.ts.map +1 -0
  751. package/lib/typescript/src/nexrad/nexradDiag.d.ts +95 -0
  752. package/lib/typescript/src/nexrad/nexradDiag.d.ts.map +1 -0
  753. package/lib/typescript/src/nexrad/nexradLutBuild.d.ts +12 -0
  754. package/lib/typescript/src/nexrad/nexradLutBuild.d.ts.map +1 -0
  755. package/lib/typescript/src/nexrad/nexradMapboxFrameOpts.bundled.d.ts +6 -0
  756. package/lib/typescript/src/nexrad/nexradMapboxFrameOpts.bundled.d.ts.map +1 -0
  757. package/lib/typescript/src/nexrad/radarArchiveCore.bundled.d.ts +7 -0
  758. package/lib/typescript/src/nexrad/radarArchiveCore.bundled.d.ts.map +1 -0
  759. package/lib/typescript/src/nexrad/radarDecode.worker.bundled.d.ts +96 -0
  760. package/lib/typescript/src/nexrad/radarDecode.worker.bundled.d.ts.map +1 -0
  761. package/lib/typescript/src/nexrad/radarFrameGpuMatch.bundled.d.ts +4 -0
  762. package/lib/typescript/src/nexrad/radarFrameGpuMatch.bundled.d.ts.map +1 -0
  763. package/lib/typescript/src/nws/NwsAlertsOverlay.android.d.ts +22 -0
  764. package/lib/typescript/src/nws/NwsAlertsOverlay.android.d.ts.map +1 -0
  765. package/lib/typescript/src/nws/NwsAlertsOverlay.d.ts +3 -0
  766. package/lib/typescript/src/nws/NwsAlertsOverlay.d.ts.map +1 -0
  767. package/lib/typescript/src/nws/NwsAlertsOverlay.ios.d.ts +6 -0
  768. package/lib/typescript/src/nws/NwsAlertsOverlay.ios.d.ts.map +1 -0
  769. package/lib/typescript/src/nws/eventSourceRnPolyfill.d.ts +5 -0
  770. package/lib/typescript/src/nws/eventSourceRnPolyfill.d.ts.map +1 -0
  771. package/lib/typescript/src/nws/nwsAndroidConstants.d.ts +8 -0
  772. package/lib/typescript/src/nws/nwsAndroidConstants.d.ts.map +1 -0
  773. package/lib/typescript/src/satellite/satelliteAndroidController.d.ts +56 -0
  774. package/lib/typescript/src/satellite/satelliteAndroidController.d.ts.map +1 -0
  775. package/package.json +4 -2
  776. package/src/AguaceroContext.js +4 -1
  777. package/src/GridRenderLayer.js +63 -151
  778. package/src/MapManager.js +61 -9
  779. package/src/MapRegistry.js +25 -4
  780. package/src/NexradRadarLayer.android.js +125 -0
  781. package/src/NexradRadarLayer.ios.js +15 -0
  782. package/src/NexradRadarLayerNativeComponent.ts +11 -0
  783. package/src/NexradSitesMapLayer.js +75 -0
  784. package/src/SatelliteLayer.android.js +69 -0
  785. package/src/SatelliteLayer.ios.js +16 -0
  786. package/src/SatelliteLayerNativeComponent.ts +9 -0
  787. package/src/WeatherLayerManager.js +531 -88
  788. package/src/nexrad/nexradAndroidController.js +1076 -0
  789. package/src/nexrad/nexradCrossSectionSampleAtLatLon.bundled.js +91 -0
  790. package/src/nexrad/nexradDiag.js +120 -0
  791. package/src/nexrad/nexradLutBuild.js +126 -0
  792. package/src/nexrad/nexradMapboxFrameOpts.bundled.js +245 -0
  793. package/src/nexrad/nexradSitesUs.json +1700 -0
  794. package/src/nexrad/radarArchiveCore.bundled.js +7091 -0
  795. package/src/nexrad/radarDecode.worker.bundled.js +813 -0
  796. package/src/nexrad/radarFrameGpuMatch.bundled.js +79 -0
  797. package/src/nws/NwsAlertsOverlay.android.js +473 -0
  798. package/src/nws/NwsAlertsOverlay.ios.js +7 -0
  799. package/src/nws/NwsAlertsOverlay.js +7 -0
  800. package/src/nws/eventSourceRnPolyfill.js +193 -0
  801. package/src/nws/nwsAndroidConstants.js +8 -0
  802. package/src/satellite/satelliteAndroidController.js +171 -0
  803. package/android/.gradle/8.9/checksums/checksums.lock +0 -0
  804. package/android/.gradle/8.9/fileChanges/last-build.bin +0 -0
  805. package/android/.gradle/8.9/fileHashes/fileHashes.lock +0 -0
  806. package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  807. package/android/.gradle/buildOutputCleanup/cache.properties +0 -2
  808. package/android/build/.transforms/42e9b8fa82d77a1c205db5bf0d0ed519/results.bin +0 -1
  809. package/android/build/.transforms/42e9b8fa82d77a1c205db5bf0d0ed519/transformed/classes/classes_dex/classes.dex +0 -0
  810. package/android/build/.transforms/8f329a9571a96a1c1c0869d49784e448/results.bin +0 -1
  811. package/android/build/.transforms/8f329a9571a96a1c1c0869d49784e448/transformed/classes/classes_dex/classes.dex +0 -0
  812. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/results.bin +0 -1
  813. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/aguacerowx/reactnative/AguaceroPackage.dex +0 -0
  814. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/aguacerowx/reactnative/BuildConfig.dex +0 -0
  815. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/aguacerowx/reactnative/GridRenderLayer$VertexInfo.dex +0 -0
  816. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/aguacerowx/reactnative/GridRenderLayer.dex +0 -0
  817. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/aguacerowx/reactnative/GridRenderLayerView.dex +0 -0
  818. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/aguacerowx/reactnative/GridRenderManager.dex +0 -0
  819. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/aguacerowx/reactnative/InspectorModule.dex +0 -0
  820. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/aguacerowx/reactnative/ShaderUtils.dex +0 -0
  821. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/aguacerowx/reactnative/WeatherFrameProcessorModule$1.dex +0 -0
  822. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/aguacerowx/reactnative/WeatherFrameProcessorModule.dex +0 -0
  823. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/GridRenderLayerManagerDelegate.dex +0 -0
  824. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/GridRenderLayerManagerInterface.dex +0 -0
  825. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin +0 -0
  826. package/android/build/.transforms/f95abdfc98a7a06fc247f75cdd74def9/results.bin +0 -1
  827. package/android/build/.transforms/f95abdfc98a7a06fc247f75cdd74def9/transformed/classes/classes_dex/classes.dex +0 -0
  828. package/android/build/generated/source/buildConfig/debug/com/aguacerowx/reactnative/BuildConfig.java +0 -10
  829. package/android/build/generated/source/codegen/jni/AguaceroWxReactNativeSpec-generated.cpp +0 -22
  830. package/android/build/generated/source/codegen/jni/AguaceroWxReactNativeSpec.h +0 -24
  831. package/android/build/generated/source/codegen/jni/CMakeLists.txt +0 -28
  832. package/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/AguaceroWxReactNativeSpecJSI-generated.cpp +0 -17
  833. package/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/AguaceroWxReactNativeSpecJSI.h +0 -19
  834. package/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/ComponentDescriptors.cpp +0 -22
  835. package/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/ComponentDescriptors.h +0 -24
  836. package/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/EventEmitters.cpp +0 -16
  837. package/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/EventEmitters.h +0 -23
  838. package/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/Props.cpp +0 -62
  839. package/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/Props.h +0 -40
  840. package/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/ShadowNodes.cpp +0 -17
  841. package/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/ShadowNodes.h +0 -32
  842. package/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/States.cpp +0 -16
  843. package/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/States.h +0 -20
  844. package/android/build/generated/source/codegen/schema.json +0 -1
  845. package/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +0 -8
  846. package/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +0 -18
  847. package/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +0 -6
  848. package/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +0 -1
  849. package/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar +0 -0
  850. package/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar +0 -0
  851. package/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +0 -4
  852. package/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/raw_debug_fragment_shader.glsl.flat +0 -0
  853. package/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/raw_debug_vertex_shader.glsl.flat +0 -0
  854. package/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/raw_fragment_shader.glsl.flat +0 -0
  855. package/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/raw_vertex_shader.glsl.flat +0 -0
  856. package/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +0 -5
  857. package/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +0 -2
  858. package/android/build/intermediates/incremental/mergeDebugAssets/merger.xml +0 -2
  859. package/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +0 -2
  860. package/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +0 -2
  861. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/BuildConfig.class +0 -0
  862. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/GridRenderLayer$VertexInfo.class +0 -0
  863. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/GridRenderLayer.class +0 -0
  864. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/GridRenderLayerView.class +0 -0
  865. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/GridRenderManager.class +0 -0
  866. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/InspectorModule.class +0 -0
  867. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/ShaderUtils.class +0 -0
  868. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/WeatherFrameProcessorModule$1.class +0 -0
  869. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/WeatherFrameProcessorModule.class +0 -0
  870. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/GridRenderLayerManagerDelegate.class +0 -0
  871. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/GridRenderLayerManagerInterface.class +0 -0
  872. package/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +0 -6
  873. package/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +0 -8
  874. package/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +0 -8
  875. package/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +0 -1
  876. package/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt +0 -1
  877. package/android/build/intermediates/packaged_res/debug/packageDebugResources/raw/debug_fragment_shader.glsl +0 -13
  878. package/android/build/intermediates/packaged_res/debug/packageDebugResources/raw/debug_vertex_shader.glsl +0 -13
  879. package/android/build/intermediates/packaged_res/debug/packageDebugResources/raw/fragment_shader.glsl +0 -181
  880. package/android/build/intermediates/packaged_res/debug/packageDebugResources/raw/vertex_shader.glsl +0 -20
  881. package/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/AguaceroPackage.class +0 -0
  882. package/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/BuildConfig.class +0 -0
  883. package/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/GridRenderLayer$VertexInfo.class +0 -0
  884. package/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/GridRenderLayer.class +0 -0
  885. package/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/GridRenderLayerView.class +0 -0
  886. package/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/GridRenderManager.class +0 -0
  887. package/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/InspectorModule.class +0 -0
  888. package/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/ShaderUtils.class +0 -0
  889. package/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/WeatherFrameProcessorModule$1.class +0 -0
  890. package/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/WeatherFrameProcessorModule.class +0 -0
  891. package/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/GridRenderLayerManagerDelegate.class +0 -0
  892. package/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/GridRenderLayerManagerInterface.class +0 -0
  893. package/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar +0 -0
  894. package/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +0 -5
  895. package/android/build/outputs/logs/manifest-merger-debug-report.txt +0 -17
  896. package/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/AguaceroPackage.class.uniqueId2 +0 -0
  897. package/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/WeatherFrameProcessorModule$1.class.uniqueId0 +0 -0
  898. package/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/WeatherFrameProcessorModule.class.uniqueId1 +0 -0
  899. package/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +0 -0
  900. package/lib/commonjs/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/WeatherFrameProcessorModule$1.class.uniqueId0 +0 -0
  901. package/lib/commonjs/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/WeatherFrameProcessorModule.class.uniqueId1 +0 -0
  902. package/lib/module/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/AguaceroPackage.class.uniqueId2 +0 -0
  903. package/lib/module/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/WeatherFrameProcessorModule$1.class.uniqueId0 +0 -0
  904. package/lib/module/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/WeatherFrameProcessorModule.class.uniqueId1 +0 -0
  905. /package/{android/.gradle/8.9/dependencies-accessors/gc.properties → lib/commonjs/android/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt} +0 -0
  906. /package/{android/.gradle/8.9/gc.properties → lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/build_stderr_aguacero_satellite_ktx.txt} +0 -0
  907. /package/{android/.gradle/vcs-1/gc.properties → lib/commonjs/android/build/intermediates/cxx/Debug/4j656ei4/logs/arm64-v8a/build_stderr_targets.txt} +0 -0
@@ -0,0 +1,906 @@
1
+ package com.aguacerowx.reactnative;
2
+
3
+ import android.content.Context;
4
+ import android.opengl.GLES20;
5
+ import android.util.Log;
6
+
7
+ import androidx.annotation.NonNull;
8
+ import androidx.annotation.Nullable;
9
+
10
+ import com.mapbox.maps.CustomLayerHost;
11
+ import com.mapbox.maps.CustomLayerRenderParameters;
12
+
13
+ import java.io.InputStream;
14
+ import java.nio.ByteBuffer;
15
+ import java.nio.ByteOrder;
16
+ import java.nio.FloatBuffer;
17
+ import java.util.ArrayList;
18
+ import java.util.Iterator;
19
+ import java.util.LinkedHashMap;
20
+ import java.util.List;
21
+ import java.util.Locale;
22
+ import java.util.Map;
23
+ import java.util.Scanner;
24
+
25
+ /**
26
+ * Mapbox Android custom layer port of mapsgl {@code MapboxRadarLayer} (NEXRAD gate texture + LUT).
27
+ * GPU uploads run in {@link #render} (GL thread), mirroring {@link GridRenderLayer}.
28
+ */
29
+ public class NexradRadarLayer implements CustomLayerHost {
30
+
31
+ private static final String TAG = "AguaceroNexrad";
32
+ private static final int LUT_SIZE = 256;
33
+ /** Max decoded gate textures retained for instant scrub-back (matches JS controller). */
34
+ private static final int MAX_GPU_CACHED_FRAMES = 16;
35
+
36
+ /** Called on UI thread after a frame is registered in {@link #gpuFrameSlots} (GL thread). */
37
+ public interface GpuFrameRegisteredListener {
38
+ void onGpuFrameRegistered(@NonNull String nativeGpuCacheKey);
39
+ }
40
+
41
+ /** Per-frame GPU cache entry (gate texture + draw uniforms + geometry fingerprint). */
42
+ private static final class GpuFrameSlot {
43
+ final int gateTexId;
44
+ final int nGates;
45
+ final int nRays;
46
+ final float valueScale;
47
+ final float valueOffset;
48
+ final float discrete;
49
+ @NonNull final String geomKey;
50
+
51
+ GpuFrameSlot(
52
+ int gateTexId,
53
+ int nGates,
54
+ int nRays,
55
+ float valueScale,
56
+ float valueOffset,
57
+ float discrete,
58
+ @NonNull String geomKey) {
59
+ this.gateTexId = gateTexId;
60
+ this.nGates = nGates;
61
+ this.nRays = nRays;
62
+ this.valueScale = valueScale;
63
+ this.valueOffset = valueOffset;
64
+ this.discrete = discrete;
65
+ this.geomKey = geomKey;
66
+ }
67
+ }
68
+
69
+ private final Context context;
70
+ private final @Nullable GpuFrameRegisteredListener gpuFrameRegisteredListener;
71
+ private int program;
72
+ private int uMatrix;
73
+ private int uGateTexture;
74
+ private int uLutTexture;
75
+ private int uTextureSize;
76
+ private int uValueScaleOffset;
77
+ private int uLutValueRange;
78
+ private int uDiscreteIntegerLut;
79
+ private int uOpacity;
80
+ private int uGateSmoothPolar;
81
+ private int aPos;
82
+ private int aUv;
83
+
84
+ private int gateTextureId;
85
+ private int lutTextureId;
86
+ private int geometryBufferId;
87
+ /** Gate texture bound for sampling on draw (may differ from {@link #gateTextureId} when using cache). */
88
+ private int activeDrawGateTexId;
89
+
90
+ private volatile int activeVertCount;
91
+ private volatile float anchorMercatorX;
92
+ private volatile float anchorMercatorY;
93
+
94
+ private final Object lock = new Object();
95
+ private volatile boolean hasFrame;
96
+ private volatile boolean visible = true;
97
+
98
+ private byte[] pendingGateBytes;
99
+ private int pendingNGates;
100
+ private int pendingNRays;
101
+ private double pendingStationLat;
102
+ private double pendingStationLon;
103
+ private float pendingFirstGateKm;
104
+ private float pendingGateWidthKm;
105
+ private float[] pendingRayBoundaries;
106
+ private byte[] pendingLutRgba;
107
+ private float pendingValueScale = 1f;
108
+ private float pendingValueOffset = 0f;
109
+ private float pendingLutMin = 0f;
110
+ private float pendingLutMax = 80f;
111
+ private float pendingDiscrete = 0f;
112
+ private float pendingOpacity = 1f;
113
+ private float pendingGateSmooth = 1f;
114
+ private int pendingInterpolateLut = 1;
115
+ /** NONE = 0, FULL = 1, STYLE = 2, ACTIVATE_CACHED = 4 */
116
+ private volatile int pendingUploadKind;
117
+ @Nullable private String pendingNativeGpuCacheKey;
118
+ @Nullable private String pendingActivateCacheKey;
119
+ private volatile boolean pendingGpuSlotsClear;
120
+ /** Style-only request arrived while an activate (kind 4) was pending — run LUT upload right after activate on GL thread. */
121
+ private volatile boolean pendingStyleAfterActivate;
122
+
123
+ /** LRU (access-ordered): native cache key → slot. Only touched on GL thread. */
124
+ private final LinkedHashMap<String, GpuFrameSlot> gpuFrameSlots =
125
+ new LinkedHashMap<String, GpuFrameSlot>(32, 0.75f, true) {
126
+ private static final long serialVersionUID = 1L;
127
+ };
128
+
129
+ /** Logcat spam control */
130
+ private int renderCallCount;
131
+ private int glUploadSeq;
132
+ private boolean loggedFirstDraw;
133
+ private boolean loggedProgramZero;
134
+
135
+ /**
136
+ * When scrubbing timestamps, gate data changes but radar mesh often matches mapsgl
137
+ * {@code MapboxRadarLayer} geometry LRU — skip ray mesh rebuild and only re-upload textures.
138
+ */
139
+ private String committedGeometryKey;
140
+
141
+ public NexradRadarLayer(Context context, @Nullable GpuFrameRegisteredListener gpuFrameRegisteredListener) {
142
+ this.context = context.getApplicationContext();
143
+ this.gpuFrameRegisteredListener = gpuFrameRegisteredListener;
144
+ }
145
+
146
+ private static void drainGlErrors(@NonNull String where) {
147
+ int err;
148
+ int n = 0;
149
+ while ((err = GLES20.glGetError()) != GLES20.GL_NO_ERROR && n++ < 12) {
150
+ Log.e(TAG, "[NEXRAD] GL error after " + where + ": 0x" + Integer.toHexString(err));
151
+ }
152
+ }
153
+ private String loadRaw(int resId) {
154
+ InputStream is = context.getResources().openRawResource(resId);
155
+ return new Scanner(is).useDelimiter("\\A").next();
156
+ }
157
+
158
+ private int compileShader(int type, String src) {
159
+ int s = GLES20.glCreateShader(type);
160
+ GLES20.glShaderSource(s, src);
161
+ GLES20.glCompileShader(s);
162
+ int[] ok = new int[1];
163
+ GLES20.glGetShaderiv(s, GLES20.GL_COMPILE_STATUS, ok, 0);
164
+ if (ok[0] == 0) {
165
+ Log.e(TAG, GLES20.glGetShaderInfoLog(s));
166
+ GLES20.glDeleteShader(s);
167
+ return 0;
168
+ }
169
+ return s;
170
+ }
171
+
172
+ @Override
173
+ public void initialize() {
174
+ String vs = loadRaw(R.raw.nexrad_vertex);
175
+ String fs = loadRaw(R.raw.nexrad_fragment);
176
+ int vShader = compileShader(GLES20.GL_VERTEX_SHADER, vs);
177
+ int fShader = compileShader(GLES20.GL_FRAGMENT_SHADER, fs);
178
+ program = GLES20.glCreateProgram();
179
+ GLES20.glAttachShader(program, vShader);
180
+ GLES20.glAttachShader(program, fShader);
181
+ GLES20.glLinkProgram(program);
182
+ int[] linked = new int[1];
183
+ GLES20.glGetProgramiv(program, GLES20.GL_LINK_STATUS, linked, 0);
184
+ if (linked[0] == 0) {
185
+ Log.e(TAG, GLES20.glGetProgramInfoLog(program));
186
+ }
187
+ GLES20.glDeleteShader(vShader);
188
+ GLES20.glDeleteShader(fShader);
189
+
190
+ uMatrix = GLES20.glGetUniformLocation(program, "u_matrix");
191
+ uGateTexture = GLES20.glGetUniformLocation(program, "u_gate_texture");
192
+ uLutTexture = GLES20.glGetUniformLocation(program, "u_lut_texture");
193
+ uTextureSize = GLES20.glGetUniformLocation(program, "u_texture_size");
194
+ uValueScaleOffset = GLES20.glGetUniformLocation(program, "u_value_scale_offset");
195
+ uLutValueRange = GLES20.glGetUniformLocation(program, "u_lut_value_range");
196
+ uDiscreteIntegerLut = GLES20.glGetUniformLocation(program, "u_discrete_integer_lut");
197
+ uOpacity = GLES20.glGetUniformLocation(program, "u_opacity");
198
+ uGateSmoothPolar = GLES20.glGetUniformLocation(program, "u_gate_smooth_polar");
199
+ aPos = GLES20.glGetAttribLocation(program, "a_pos");
200
+ aUv = GLES20.glGetAttribLocation(program, "a_uv");
201
+
202
+ int[] tex = new int[2];
203
+ GLES20.glGenTextures(2, tex, 0);
204
+ gateTextureId = tex[0];
205
+ lutTextureId = tex[1];
206
+
207
+ int[] buf = new int[1];
208
+ GLES20.glGenBuffers(1, buf, 0);
209
+ geometryBufferId = buf[0];
210
+ activeDrawGateTexId = gateTextureId;
211
+ }
212
+
213
+ private RadarRayGeometryBuilder.Result pendingGeomResult;
214
+
215
+ public void requestFullFrameUpload(
216
+ byte[] gateBytes,
217
+ int nGates,
218
+ int nRays,
219
+ double stationLat,
220
+ double stationLon,
221
+ float firstGateKm,
222
+ float gateWidthKm,
223
+ float[] rayBoundariesDeg,
224
+ byte[] lutRgba256,
225
+ float valueScale,
226
+ float valueOffset,
227
+ float lutMin,
228
+ float lutMax,
229
+ float discreteIntegerLut,
230
+ float opacity,
231
+ float gateSmoothPolar,
232
+ int interpolateLut,
233
+ @Nullable String nativeGpuCacheKey,
234
+ @Nullable RadarRayGeometryBuilder.Result geomResult) {
235
+ synchronized (lock) {
236
+ pendingGateBytes = gateBytes;
237
+ pendingNGates = nGates;
238
+ pendingNRays = nRays;
239
+ pendingStationLat = stationLat;
240
+ pendingStationLon = stationLon;
241
+ pendingFirstGateKm = firstGateKm;
242
+ pendingGateWidthKm = gateWidthKm;
243
+ pendingRayBoundaries = rayBoundariesDeg;
244
+ pendingLutRgba = lutRgba256;
245
+ pendingValueScale = valueScale;
246
+ pendingValueOffset = valueOffset;
247
+ pendingLutMin = lutMin;
248
+ pendingLutMax = lutMax;
249
+ pendingDiscrete = discreteIntegerLut;
250
+ pendingOpacity = opacity;
251
+ pendingGateSmooth = gateSmoothPolar;
252
+ pendingInterpolateLut = interpolateLut;
253
+ pendingNativeGpuCacheKey = nativeGpuCacheKey;
254
+ pendingGeomResult = geomResult;
255
+ pendingUploadKind = 1;
256
+ visible = true;
257
+ }
258
+ }
259
+
260
+ /**
261
+ * Instant scrub to a frame whose gate texture was previously registered (see {@link #gpuFrameSlots}).
262
+ * Style (LUT/opacity) must be applied separately if needed.
263
+ */
264
+ public void requestActivateCachedFrame(@NonNull String nativeGpuCacheKey) {
265
+ synchronized (lock) {
266
+ pendingActivateCacheKey = nativeGpuCacheKey;
267
+ pendingUploadKind = 4;
268
+ }
269
+ }
270
+
271
+ public void requestStyleOnlyUpload(
272
+ byte[] lutRgba256,
273
+ float valueScale,
274
+ float valueOffset,
275
+ float lutMin,
276
+ float lutMax,
277
+ float discreteIntegerLut,
278
+ float opacity,
279
+ float gateSmoothPolar,
280
+ int interpolateLut
281
+ ) {
282
+ synchronized (lock) {
283
+ pendingLutRgba = lutRgba256;
284
+ pendingValueScale = valueScale;
285
+ pendingValueOffset = valueOffset;
286
+ pendingLutMin = lutMin;
287
+ pendingLutMax = lutMax;
288
+ pendingDiscrete = discreteIntegerLut;
289
+ pendingOpacity = opacity;
290
+ pendingGateSmooth = gateSmoothPolar;
291
+ pendingInterpolateLut = interpolateLut;
292
+ if (pendingUploadKind == 4) {
293
+ pendingStyleAfterActivate = true;
294
+ } else {
295
+ pendingUploadKind = 2;
296
+ }
297
+ }
298
+ }
299
+
300
+ public void clearFrame() {
301
+ synchronized (lock) {
302
+ hasFrame = false;
303
+ activeVertCount = 0;
304
+ pendingUploadKind = 0;
305
+ committedGeometryKey = null;
306
+ pendingGpuSlotsClear = true;
307
+ pendingStyleAfterActivate = false;
308
+ }
309
+ }
310
+
311
+ /** GL thread: delete cached gate textures (except primary {@link #gateTextureId}). */
312
+ private void clearGpuFrameSlotsOnGlThread() {
313
+ for (GpuFrameSlot s : new ArrayList<>(gpuFrameSlots.values())) {
314
+ if (s.gateTexId != 0 && s.gateTexId != gateTextureId) {
315
+ GLES20.glDeleteTextures(1, new int[] {s.gateTexId}, 0);
316
+ }
317
+ }
318
+ gpuFrameSlots.clear();
319
+ activeDrawGateTexId = gateTextureId;
320
+ }
321
+
322
+ /**
323
+ * Resolve gate GL texture for an upload. LRU-evicts oldest slots when at capacity (GL thread only).
324
+ */
325
+ private int obtainGateTextureForCacheKey(@Nullable String cacheKey) {
326
+ if (cacheKey == null || cacheKey.isEmpty()) {
327
+ return gateTextureId;
328
+ }
329
+ GpuFrameSlot ex = gpuFrameSlots.get(cacheKey);
330
+ if (ex != null) {
331
+ gpuFrameSlots.remove(cacheKey);
332
+ gpuFrameSlots.put(cacheKey, ex);
333
+ return ex.gateTexId;
334
+ }
335
+ while (gpuFrameSlots.size() >= MAX_GPU_CACHED_FRAMES) {
336
+ Iterator<Map.Entry<String, GpuFrameSlot>> it = gpuFrameSlots.entrySet().iterator();
337
+ if (!it.hasNext()) break;
338
+ Map.Entry<String, GpuFrameSlot> e = it.next();
339
+ it.remove();
340
+ int tid = e.getValue().gateTexId;
341
+ if (tid != 0 && tid != gateTextureId) {
342
+ GLES20.glDeleteTextures(1, new int[] {tid}, 0);
343
+ }
344
+ }
345
+ int[] tid = new int[1];
346
+ GLES20.glGenTextures(1, tid, 0);
347
+ return tid[0];
348
+ }
349
+
350
+ private void registerGpuFrameSlot(
351
+ @Nullable String cacheKey,
352
+ int gateTexId,
353
+ int nGates,
354
+ int nRays,
355
+ float vs,
356
+ float vo,
357
+ float discrete,
358
+ @NonNull String geomKey) {
359
+ if (cacheKey == null || cacheKey.isEmpty()) {
360
+ return;
361
+ }
362
+ GpuFrameSlot old = gpuFrameSlots.remove(cacheKey);
363
+ if (old != null && old.gateTexId != gateTexId && old.gateTexId != gateTextureId) {
364
+ GLES20.glDeleteTextures(1, new int[] {old.gateTexId}, 0);
365
+ }
366
+ GpuFrameSlot slot = new GpuFrameSlot(gateTexId, nGates, nRays, vs, vo, discrete, geomKey);
367
+ while (gpuFrameSlots.size() >= MAX_GPU_CACHED_FRAMES) {
368
+ Iterator<Map.Entry<String, GpuFrameSlot>> it = gpuFrameSlots.entrySet().iterator();
369
+ if (!it.hasNext()) break;
370
+ Map.Entry<String, GpuFrameSlot> e = it.next();
371
+ if (e.getKey().equals(cacheKey)) break;
372
+ it.remove();
373
+ int tid = e.getValue().gateTexId;
374
+ if (tid != 0 && tid != gateTextureId) {
375
+ GLES20.glDeleteTextures(1, new int[] {tid}, 0);
376
+ }
377
+ }
378
+ gpuFrameSlots.put(cacheKey, slot);
379
+ }
380
+
381
+ private void notifyGpuFrameRegistered(@Nullable String cacheKey) {
382
+ if (cacheKey == null || cacheKey.isEmpty()) {
383
+ return;
384
+ }
385
+ final GpuFrameRegisteredListener listener = gpuFrameRegisteredListener;
386
+ if (listener != null) {
387
+ listener.onGpuFrameRegistered(cacheKey);
388
+ }
389
+ }
390
+
391
+ /** FNV-1a fingerprint of ray boundaries — aligned with mapsgl {@code fingerprintRayBoundariesDegQuantized}. */
392
+ private static String fingerprintRayBoundariesDeg(float[] b, int unitsPerDeg) {
393
+ if (b == null || b.length == 0) return "0";
394
+ int h = (int) 2166136261L;
395
+ int n = b.length;
396
+ for (int i = 0; i < n; i++) {
397
+ int v = Math.round(b[i] * (float) unitsPerDeg);
398
+ h ^= v;
399
+ h *= 16777619;
400
+ }
401
+ h ^= n * 73856093;
402
+ long uh = h & 0xFFFFFFFFL;
403
+ return Long.toString(uh, 36);
404
+ }
405
+
406
+ public static String buildGeometryCacheKey(
407
+ int nRays,
408
+ int nGates,
409
+ double stationLat,
410
+ double stationLon,
411
+ float firstGateKm,
412
+ float gateWidthKm,
413
+ float[] rayBoundariesDeg) {
414
+ String base =
415
+ stationLat
416
+ + ","
417
+ + stationLon
418
+ + ","
419
+ + firstGateKm
420
+ + ","
421
+ + gateWidthKm
422
+ + ","
423
+ + nRays
424
+ + ","
425
+ + nGates;
426
+ String rb = fingerprintRayBoundariesDeg(rayBoundariesDeg, 1000);
427
+ return base + ",rb:" + rb;
428
+ }
429
+
430
+ public boolean isGeometryCommitted(String geomKey) {
431
+ synchronized (lock) {
432
+ return committedGeometryKey != null && committedGeometryKey.equals(geomKey);
433
+ }
434
+ }
435
+
436
+ public void setVisible(boolean v) {
437
+ this.visible = v;
438
+ }
439
+
440
+ private void applyLutUploadGL() {
441
+ byte[] lut = pendingLutRgba;
442
+ if (lut == null || lut.length < LUT_SIZE * 4) return;
443
+ GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, lutTextureId);
444
+ int lutFilter = pendingInterpolateLut != 0 ? GLES20.GL_LINEAR : GLES20.GL_NEAREST;
445
+ GLES20.glTexParameteri(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_MIN_FILTER, lutFilter);
446
+ GLES20.glTexParameteri(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_MAG_FILTER, lutFilter);
447
+ GLES20.glTexParameteri(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_WRAP_S, GLES20.GL_CLAMP_TO_EDGE);
448
+ GLES20.glTexParameteri(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_WRAP_T, GLES20.GL_CLAMP_TO_EDGE);
449
+ ByteBuffer lutBuf = ByteBuffer.allocateDirect(lut.length).order(ByteOrder.nativeOrder());
450
+ lutBuf.put(lut);
451
+ lutBuf.position(0);
452
+ GLES20.glTexImage2D(
453
+ GLES20.GL_TEXTURE_2D, 0, GLES20.GL_RGBA, LUT_SIZE, 1, 0, GLES20.GL_RGBA, GLES20.GL_UNSIGNED_BYTE, lutBuf);
454
+ }
455
+
456
+ @Override
457
+ public void render(CustomLayerRenderParameters params) {
458
+ renderCallCount++;
459
+ final int tick = renderCallCount;
460
+
461
+ if (program == 0) {
462
+ if (!loggedProgramZero) {
463
+ loggedProgramZero = true;
464
+ Log.w(TAG, "[NEXRAD] render: program=0 (GL not initialized or context lost)");
465
+ }
466
+ return;
467
+ }
468
+
469
+ synchronized (lock) {
470
+ if (pendingGpuSlotsClear) {
471
+ pendingGpuSlotsClear = false;
472
+ clearGpuFrameSlotsOnGlThread();
473
+ if (AguaceroDebugLog.NEXRAD_NATIVE_VERBOSE) {
474
+ Log.i(TAG, "[NEXRAD][PERF] glUpload gpuSlotCacheCleared tick=" + tick);
475
+ }
476
+ }
477
+
478
+ int kind = pendingUploadKind;
479
+ if (kind != 0) {
480
+ final long tPendingStart = System.nanoTime();
481
+ if (kind == 4) {
482
+ final String actKey = pendingActivateCacheKey;
483
+ pendingUploadKind = 0;
484
+ pendingActivateCacheKey = null;
485
+ GpuFrameSlot slot = actKey != null ? gpuFrameSlots.get(actKey) : null;
486
+ if (slot == null) {
487
+ if (AguaceroDebugLog.NEXRAD_NATIVE_VERBOSE) {
488
+ Log.w(
489
+ TAG,
490
+ String.format(
491
+ Locale.US,
492
+ "[NEXRAD][PERF] glUpload activateCached MISS tick=%d keyTail=%s cacheSize=%d",
493
+ tick,
494
+ actKey != null && actKey.length() > 80 ? actKey.substring(actKey.length() - 80) : actKey,
495
+ gpuFrameSlots.size()));
496
+ }
497
+ } else if (activeVertCount <= 0) {
498
+ if (AguaceroDebugLog.NEXRAD_NATIVE_VERBOSE) {
499
+ Log.w(TAG, "[NEXRAD][PERF] glUpload activateCached SKIP noMesh tick=" + tick);
500
+ }
501
+ } else if (committedGeometryKey != null && !committedGeometryKey.equals(slot.geomKey)) {
502
+ if (AguaceroDebugLog.NEXRAD_NATIVE_VERBOSE) {
503
+ Log.w(
504
+ TAG,
505
+ String.format(
506
+ Locale.US,
507
+ "[NEXRAD][PERF] glUpload activateCached SKIP geomMismatch tick=%d committed=%s slot=%s",
508
+ tick,
509
+ committedGeometryKey.length() > 48
510
+ ? committedGeometryKey.substring(0, 48)
511
+ : committedGeometryKey,
512
+ slot.geomKey.length() > 48 ? slot.geomKey.substring(0, 48) : slot.geomKey));
513
+ }
514
+ } else {
515
+ activeDrawGateTexId = slot.gateTexId;
516
+ pendingNGates = slot.nGates;
517
+ pendingNRays = slot.nRays;
518
+ pendingValueScale = slot.valueScale;
519
+ pendingValueOffset = slot.valueOffset;
520
+ pendingDiscrete = slot.discrete;
521
+ hasFrame = activeVertCount > 0;
522
+ if (AguaceroDebugLog.NEXRAD_NATIVE_VERBOSE) {
523
+ Log.i(
524
+ TAG,
525
+ String.format(
526
+ Locale.US,
527
+ "[NEXRAD][PERF] glUpload activateCached OK tick=%d gateTex=%d nGates=%d nRays=%d vs=%.6f vo=%.6f totalMs=%.3f",
528
+ tick,
529
+ slot.gateTexId,
530
+ slot.nGates,
531
+ slot.nRays,
532
+ slot.valueScale,
533
+ slot.valueOffset,
534
+ (System.nanoTime() - tPendingStart) / 1_000_000.0));
535
+ }
536
+ }
537
+ }
538
+ if (pendingStyleAfterActivate && hasFrame) {
539
+ pendingStyleAfterActivate = false;
540
+ long mark = System.nanoTime();
541
+ applyLutUploadGL();
542
+ double lutAfterActMs = (System.nanoTime() - mark) / 1_000_000.0;
543
+ drainGlErrors("style-after-activate lut");
544
+ if (AguaceroDebugLog.NEXRAD_NATIVE_VERBOSE) {
545
+ Log.i(
546
+ TAG,
547
+ String.format(
548
+ Locale.US,
549
+ "[NEXRAD][PERF] glUpload styleAfterActivate tick=%d lutMs=%.3f seq=%d",
550
+ tick,
551
+ lutAfterActMs,
552
+ glUploadSeq));
553
+ }
554
+ }
555
+ if (kind == 2 && hasFrame) {
556
+ long mark = System.nanoTime();
557
+ applyLutUploadGL();
558
+ double lutOnlyMs = (System.nanoTime() - mark) / 1_000_000.0;
559
+ drainGlErrors("style-only lut");
560
+ pendingUploadKind = 0;
561
+ if (AguaceroDebugLog.NEXRAD_NATIVE_VERBOSE) {
562
+ Log.i(
563
+ TAG,
564
+ String.format(
565
+ Locale.US,
566
+ "[NEXRAD][PERF] glUpload styleOnly tick=%d lutMs=%.3f pendingTotalMs=%.3f seq=%d",
567
+ tick,
568
+ lutOnlyMs,
569
+ (System.nanoTime() - tPendingStart) / 1_000_000.0,
570
+ glUploadSeq));
571
+ }
572
+ } else if (kind == 1 && pendingGateBytes != null && pendingRayBoundaries != null) {
573
+ int expectedGateBytes = pendingNGates * pendingNRays * 2;
574
+ String geomKey =
575
+ buildGeometryCacheKey(
576
+ pendingNRays,
577
+ pendingNGates,
578
+ pendingStationLat,
579
+ pendingStationLon,
580
+ pendingFirstGateKm,
581
+ pendingGateWidthKm,
582
+ pendingRayBoundaries);
583
+ boolean reuseMesh =
584
+ hasFrame
585
+ && activeVertCount > 0
586
+ && committedGeometryKey != null
587
+ && committedGeometryKey.equals(geomKey)
588
+ && pendingGateBytes.length == expectedGateBytes
589
+ && pendingRayBoundaries.length == pendingNRays + 1;
590
+
591
+ double geomBuildMs = 0;
592
+ double bufferDataMs = 0;
593
+ if (!reuseMesh) {
594
+ RadarRayGeometryBuilder.Result geom = pendingGeomResult;
595
+ if (geom != null) {
596
+ activeVertCount = geom.vertexCount;
597
+ anchorMercatorX = geom.anchorMercatorX;
598
+ anchorMercatorY = geom.anchorMercatorY;
599
+
600
+ FloatBuffer vb = geom.vertexBuffer;
601
+ GLES20.glBindBuffer(GLES20.GL_ARRAY_BUFFER, geometryBufferId);
602
+ int bytes = vb.capacity() * 4;
603
+ vb.position(0);
604
+ long mark = System.nanoTime();
605
+ GLES20.glBufferData(GLES20.GL_ARRAY_BUFFER, bytes, vb, GLES20.GL_STATIC_DRAW);
606
+ bufferDataMs = (System.nanoTime() - mark) / 1_000_000.0;
607
+ GLES20.glBindBuffer(GLES20.GL_ARRAY_BUFFER, 0);
608
+ committedGeometryKey = geomKey;
609
+ }
610
+ }
611
+ pendingGeomResult = null;
612
+
613
+ final String cacheKeySnapshot = pendingNativeGpuCacheKey;
614
+ pendingNativeGpuCacheKey = null;
615
+ int texTarget = obtainGateTextureForCacheKey(cacheKeySnapshot);
616
+
617
+ long mark = System.nanoTime();
618
+ GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, texTarget);
619
+ GLES20.glPixelStorei(GLES20.GL_UNPACK_ALIGNMENT, 1);
620
+ GLES20.glTexParameteri(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_MIN_FILTER, GLES20.GL_NEAREST);
621
+ GLES20.glTexParameteri(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_MAG_FILTER, GLES20.GL_NEAREST);
622
+ GLES20.glTexParameteri(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_WRAP_S, GLES20.GL_CLAMP_TO_EDGE);
623
+ GLES20.glTexParameteri(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_WRAP_T, GLES20.GL_CLAMP_TO_EDGE);
624
+ ByteBuffer gateBuf = ByteBuffer.wrap(pendingGateBytes);
625
+ GLES20.glTexImage2D(
626
+ GLES20.GL_TEXTURE_2D,
627
+ 0,
628
+ GLES20.GL_LUMINANCE_ALPHA,
629
+ pendingNGates,
630
+ pendingNRays,
631
+ 0,
632
+ GLES20.GL_LUMINANCE_ALPHA,
633
+ GLES20.GL_UNSIGNED_BYTE,
634
+ gateBuf);
635
+ double gateTexMs = (System.nanoTime() - mark) / 1_000_000.0;
636
+ drainGlErrors("glTexImage2D gate LA " + pendingNGates + "x" + pendingNRays);
637
+
638
+ mark = System.nanoTime();
639
+ applyLutUploadGL();
640
+ double lutMs = (System.nanoTime() - mark) / 1_000_000.0;
641
+ drainGlErrors("applyLutUploadGL");
642
+
643
+ activeDrawGateTexId = texTarget;
644
+ hasFrame = activeVertCount > 0;
645
+ pendingUploadKind = 0;
646
+ glUploadSeq++;
647
+ double pendingTotalMs = (System.nanoTime() - tPendingStart) / 1_000_000.0;
648
+
649
+ registerGpuFrameSlot(
650
+ cacheKeySnapshot,
651
+ texTarget,
652
+ pendingNGates,
653
+ pendingNRays,
654
+ pendingValueScale,
655
+ pendingValueOffset,
656
+ pendingDiscrete,
657
+ geomKey);
658
+ notifyGpuFrameRegistered(cacheKeySnapshot);
659
+
660
+ if (AguaceroDebugLog.NEXRAD_NATIVE_VERBOSE) {
661
+ Log.i(
662
+ TAG,
663
+ String.format(
664
+ Locale.US,
665
+ "[NEXRAD][PERF] glUpload full tick=%d reuseMesh=%s verts=%d gate=%dx%d "
666
+ + "geomBuildMs=%.3f bufferDataMs=%.3f gateTexMs=%.3f lutMs=%.3f pendingTotalMs=%.3f seq=%d "
667
+ + "cacheKey=%s texTarget=%d cacheSlots=%d",
668
+ tick,
669
+ Boolean.toString(reuseMesh),
670
+ activeVertCount,
671
+ pendingNGates,
672
+ pendingNRays,
673
+ geomBuildMs,
674
+ bufferDataMs,
675
+ gateTexMs,
676
+ lutMs,
677
+ pendingTotalMs,
678
+ glUploadSeq,
679
+ cacheKeySnapshot != null && !cacheKeySnapshot.isEmpty() ? "yes" : "no",
680
+ texTarget,
681
+ gpuFrameSlots.size()));
682
+ Log.i(
683
+ TAG,
684
+ (reuseMesh ? "[NEXRAD] GL gate+LUT only (mesh reused) verts=" : "[NEXRAD] GL frame buffers uploaded verts=")
685
+ + activeVertCount
686
+ + " gateTex="
687
+ + pendingNGates
688
+ + "x"
689
+ + pendingNRays
690
+ + " anchorMerc=("
691
+ + anchorMercatorX
692
+ + ","
693
+ + anchorMercatorY
694
+ + ") seq="
695
+ + glUploadSeq
696
+ + " vs="
697
+ + pendingValueScale
698
+ + " vo="
699
+ + pendingValueOffset
700
+ + " lut=("
701
+ + pendingLutMin
702
+ + ","
703
+ + pendingLutMax
704
+ + ") tile512");
705
+ }
706
+ } else if (kind == 1) {
707
+ if (AguaceroDebugLog.NEXRAD_NATIVE_VERBOSE) {
708
+ Log.w(
709
+ TAG,
710
+ "[NEXRAD] full upload pending but incomplete: gateBytes="
711
+ + (pendingGateBytes != null ? pendingGateBytes.length : -1)
712
+ + " rays="
713
+ + (pendingRayBoundaries != null ? pendingRayBoundaries.length : -1));
714
+ }
715
+ }
716
+ }
717
+ }
718
+
719
+ if (!visible) {
720
+ if (AguaceroDebugLog.NEXRAD_NATIVE_VERBOSE && (tick <= 3 || tick % 180 == 0)) {
721
+ Log.i(TAG, "[NEXRAD] render skip: visible=false tick=" + tick);
722
+ }
723
+ return;
724
+ }
725
+
726
+ int vc;
727
+ float ax, ay;
728
+ float vs, vo, lmin, lmax, disc, op, gsm;
729
+ int tw, th;
730
+ synchronized (lock) {
731
+ if (!hasFrame || activeVertCount <= 0) {
732
+ if (AguaceroDebugLog.NEXRAD_NATIVE_VERBOSE && (tick <= 5 || tick % 180 == 0)) {
733
+ Log.i(TAG, "[NEXRAD] render skip: no drawable mesh hasFrame=" + hasFrame + " verts=" + activeVertCount);
734
+ }
735
+ return;
736
+ }
737
+ vc = activeVertCount;
738
+ ax = anchorMercatorX;
739
+ ay = anchorMercatorY;
740
+ vs = pendingValueScale;
741
+ vo = pendingValueOffset;
742
+ lmin = pendingLutMin;
743
+ lmax = pendingLutMax;
744
+ disc = pendingDiscrete;
745
+ op = pendingOpacity;
746
+ gsm = pendingGateSmooth;
747
+ tw = pendingNGates;
748
+ th = pendingNRays;
749
+ }
750
+
751
+ List<Double> matrixList = params.getProjectionMatrix();
752
+ float[] matrix = new float[16];
753
+ double[] md = new double[16];
754
+ for (int i = 0; i < 16; i++) {
755
+ double d = matrixList.get(i);
756
+ md[i] = d;
757
+ matrix[i] = (float) d;
758
+ }
759
+
760
+ // Same as {@link GridRenderLayer}: Android Mapbox custom-layer projection matrices use a
761
+ // coordinate convention where the linear 3x4 block (column-major indices 0-11) is scaled by
762
+ // 2^zoom. {@link RadarRayGeometryBuilder} emits vertex x/y and anchor in mercator*512 space
763
+ // to match the grid; Web GL JS uses raw normalized mercator with a different matrix.
764
+ double zoom = params.getZoom();
765
+ double mercatorScale = Math.pow(2.0, zoom);
766
+ for (int i = 0; i < 12; i++) {
767
+ md[i] *= mercatorScale;
768
+ matrix[i] *= mercatorScale;
769
+ }
770
+
771
+ float shifted12 = (float) (md[0] * ax + md[4] * ay + md[12]);
772
+ float shifted13 = (float) (md[1] * ax + md[5] * ay + md[13]);
773
+ float shifted14 = (float) (md[2] * ax + md[6] * ay + md[14]);
774
+ float shifted15 = (float) (md[3] * ax + md[7] * ay + md[15]);
775
+ matrix[12] = shifted12;
776
+ matrix[13] = shifted13;
777
+ matrix[14] = shifted14;
778
+ matrix[15] = shifted15;
779
+
780
+ if (AguaceroDebugLog.NEXRAD_NATIVE_VERBOSE && (!loggedFirstDraw || tick % 120 == 0)) {
781
+ Log.i(
782
+ TAG,
783
+ "[NEXRAD] draw tick="
784
+ + tick
785
+ + " verts="
786
+ + vc
787
+ + " tex="
788
+ + tw
789
+ + "x"
790
+ + th
791
+ + " anchor=("
792
+ + ax
793
+ + ","
794
+ + ay
795
+ + ") zoom="
796
+ + String.format(java.util.Locale.US, "%.3f", zoom)
797
+ + " mercS="
798
+ + String.format(java.util.Locale.US, "%.3f", mercatorScale)
799
+ + " m0-3=("
800
+ + matrix[0]
801
+ + ","
802
+ + matrix[1]
803
+ + ","
804
+ + matrix[2]
805
+ + ","
806
+ + matrix[3]
807
+ + ") m12-15=("
808
+ + matrix[12]
809
+ + ","
810
+ + matrix[13]
811
+ + ","
812
+ + matrix[14]
813
+ + ","
814
+ + matrix[15]
815
+ + ") lut=("
816
+ + lmin
817
+ + ","
818
+ + lmax
819
+ + ") vs="
820
+ + vs
821
+ + " vo="
822
+ + vo
823
+ + " op="
824
+ + op
825
+ + " gsm="
826
+ + gsm);
827
+ loggedFirstDraw = true;
828
+ }
829
+
830
+ GLES20.glUseProgram(program);
831
+ GLES20.glUniformMatrix4fv(uMatrix, 1, false, matrix, 0);
832
+
833
+ GLES20.glActiveTexture(GLES20.GL_TEXTURE0);
834
+ GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, activeDrawGateTexId);
835
+ GLES20.glUniform1i(uGateTexture, 0);
836
+
837
+ GLES20.glActiveTexture(GLES20.GL_TEXTURE1);
838
+ GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, lutTextureId);
839
+ GLES20.glUniform1i(uLutTexture, 1);
840
+
841
+ GLES20.glUniform2f(uTextureSize, tw, th);
842
+ GLES20.glUniform2f(uValueScaleOffset, vs, vo);
843
+ GLES20.glUniform2f(uLutValueRange, lmin, lmax);
844
+ GLES20.glUniform1f(uDiscreteIntegerLut, disc);
845
+ GLES20.glUniform1f(uOpacity, op);
846
+ GLES20.glUniform1f(uGateSmoothPolar, gsm);
847
+
848
+ GLES20.glBindBuffer(GLES20.GL_ARRAY_BUFFER, geometryBufferId);
849
+ GLES20.glEnableVertexAttribArray(aPos);
850
+ GLES20.glVertexAttribPointer(aPos, 2, GLES20.GL_FLOAT, false, 16, 0);
851
+ GLES20.glEnableVertexAttribArray(aUv);
852
+ GLES20.glVertexAttribPointer(aUv, 2, GLES20.GL_FLOAT, false, 16, 8);
853
+
854
+ GLES20.glEnable(GLES20.GL_BLEND);
855
+ GLES20.glBlendFunc(GLES20.GL_SRC_ALPHA, GLES20.GL_ONE_MINUS_SRC_ALPHA);
856
+ GLES20.glDisable(GLES20.GL_DEPTH_TEST);
857
+
858
+ GLES20.glDrawArrays(GLES20.GL_TRIANGLES, 0, vc);
859
+ drainGlErrors("glDrawArrays tri=" + vc);
860
+
861
+ GLES20.glDisableVertexAttribArray(aPos);
862
+ GLES20.glDisableVertexAttribArray(aUv);
863
+ GLES20.glBindBuffer(GLES20.GL_ARRAY_BUFFER, 0);
864
+ GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, 0);
865
+ }
866
+ @Override
867
+ public void deinitialize() {
868
+ for (GpuFrameSlot s : new ArrayList<>(gpuFrameSlots.values())) {
869
+ if (s.gateTexId != 0) {
870
+ GLES20.glDeleteTextures(1, new int[] {s.gateTexId}, 0);
871
+ }
872
+ }
873
+ gpuFrameSlots.clear();
874
+ if (program != 0) {
875
+ GLES20.glDeleteProgram(program);
876
+ program = 0;
877
+ }
878
+ if (gateTextureId != 0 || lutTextureId != 0) {
879
+ int[] tex = {gateTextureId, lutTextureId};
880
+ GLES20.glDeleteTextures(2, tex, 0);
881
+ gateTextureId = 0;
882
+ lutTextureId = 0;
883
+ }
884
+ activeDrawGateTexId = 0;
885
+ if (geometryBufferId != 0) {
886
+ GLES20.glDeleteBuffers(1, new int[] {geometryBufferId}, 0);
887
+ geometryBufferId = 0;
888
+ }
889
+ }
890
+
891
+ @Override
892
+ public void contextLost() {
893
+ program = 0;
894
+ gateTextureId = 0;
895
+ lutTextureId = 0;
896
+ geometryBufferId = 0;
897
+ activeDrawGateTexId = 0;
898
+ loggedProgramZero = false;
899
+ synchronized (lock) {
900
+ gpuFrameSlots.clear();
901
+ committedGeometryKey = null;
902
+ hasFrame = false;
903
+ activeVertCount = 0;
904
+ }
905
+ }
906
+ }