@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,1060 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.NexradAndroidController = void 0;
7
+ var _javascriptSdk = require("@aguacerowx/javascript-sdk");
8
+ var _base64Js = require("base64-js");
9
+ var _radarArchiveCoreBundled = require("./radarArchiveCore.bundled.js");
10
+ var _radarFrameGpuMatchBundled = require("./radarFrameGpuMatch.bundled.js");
11
+ var _nexradMapboxFrameOptsBundled = require("./nexradMapboxFrameOpts.bundled.js");
12
+ var _nexradCrossSectionSampleAtLatLonBundled = require("./nexradCrossSectionSampleAtLatLon.bundled.js");
13
+ var _nexradLutBuild = require("./nexradLutBuild.js");
14
+ var _nexradDiag = require("./nexradDiag.js");
15
+ /**
16
+ * AguaceroCore NEXRAD → Android native custom layer (parity with mapsgl {@link NexradWeatherController}).
17
+ */
18
+
19
+ (0, _nexradDiag.nexradDiagBootSnapshot)({
20
+ archiveExports: {
21
+ setNexradArchiveApiKey: typeof _radarArchiveCoreBundled.setNexradArchiveApiKey,
22
+ setNexradArchiveBundleId: typeof _radarArchiveCoreBundled.setNexradArchiveBundleId,
23
+ objectKeyToUrl: typeof _radarArchiveCoreBundled.objectKeyToUrl,
24
+ fetchAndParseArchive: typeof _radarArchiveCoreBundled.fetchAndParseArchive
25
+ }
26
+ });
27
+
28
+ /** @returns {boolean} */
29
+ function ensureRadarArchiveBindings(label) {
30
+ const ok = typeof _radarArchiveCoreBundled.setNexradArchiveApiKey === 'function' && typeof _radarArchiveCoreBundled.setNexradArchiveBundleId === 'function' && typeof _radarArchiveCoreBundled.objectKeyToUrl === 'function' && typeof _radarArchiveCoreBundled.fetchAndParseArchive === 'function';
31
+ if (!ok) {
32
+ (0, _nexradDiag.nexradDiag)('archive.bindings.missing', {
33
+ where: label,
34
+ setNexradArchiveApiKey: typeof _radarArchiveCoreBundled.setNexradArchiveApiKey,
35
+ setNexradArchiveBundleId: typeof _radarArchiveCoreBundled.setNexradArchiveBundleId,
36
+ objectKeyToUrl: typeof _radarArchiveCoreBundled.objectKeyToUrl,
37
+ fetchAndParseArchive: typeof _radarArchiveCoreBundled.fetchAndParseArchive
38
+ });
39
+ }
40
+ return ok;
41
+ }
42
+ function pickNearestLevel3ObjectKey(unixTime, timeToKeyMap, maxDeltaSec = 600) {
43
+ const direct = timeToKeyMap[String(unixTime)];
44
+ if (direct) return direct;
45
+ const entries = Object.entries(timeToKeyMap || {});
46
+ if (entries.length === 0) return null;
47
+ let bestKey = null;
48
+ let bestDelta = Infinity;
49
+ for (const [tStr, key] of entries) {
50
+ const t = Number(tStr);
51
+ if (!Number.isFinite(t)) continue;
52
+ const d = Math.abs(t - unixTime);
53
+ if (d < bestDelta) {
54
+ bestDelta = d;
55
+ bestKey = key;
56
+ }
57
+ }
58
+ if (bestKey == null) return null;
59
+ if (bestDelta > maxDeltaSec && Number.isFinite(maxDeltaSec)) return null;
60
+ return bestKey;
61
+ }
62
+ function isVelocityStyleRadarVar(radarVariable) {
63
+ return radarVariable === 'VEL' || radarVariable === 'SW' || radarVariable === 'N0G' || radarVariable === 'N0W';
64
+ }
65
+ function velocityRangeToMs(rangeMin, rangeMax, displayUnit) {
66
+ if (rangeMin == null || rangeMax == null || !displayUnit || displayUnit.toLowerCase() === 'm/s' || displayUnit.toLowerCase() === 'ms') {
67
+ return [rangeMin, rangeMax];
68
+ }
69
+ const toMs = (0, _javascriptSdk.getUnitConversionFunction)(displayUnit, 'm/s', 'nexrad_vel');
70
+ if (!toMs) return [rangeMin, rangeMax];
71
+ return [toMs(rangeMin), toMs(rangeMax)];
72
+ }
73
+ function colormapToMs(colormap, radarVariable, displayUnit) {
74
+ if (!colormap || !Array.isArray(colormap) || colormap.length < 2) return colormap;
75
+ if (!isVelocityStyleRadarVar(radarVariable)) return colormap;
76
+ if (!displayUnit || displayUnit.toLowerCase() === 'm/s' || displayUnit.toLowerCase() === 'ms') return colormap;
77
+ const toMs = (0, _javascriptSdk.getUnitConversionFunction)(displayUnit, 'm/s', radarVariable === 'SW' || radarVariable === 'N0W' ? 'nexrad_sw' : 'nexrad_vel');
78
+ if (!toMs) return colormap;
79
+ const out = [...colormap];
80
+ for (let i = 0; i < out.length; i += 2) {
81
+ const v = out[i];
82
+ if (typeof v === 'number' && Number.isFinite(v)) out[i] = toMs(v);
83
+ }
84
+ return out;
85
+ }
86
+ function radarShaderValueRange(rangeMin, rangeMax, radarVariable, units, nexradDataSource) {
87
+ const v = (radarVariable || '').toUpperCase();
88
+ if (isVelocityStyleRadarVar(v)) {
89
+ const [vmin, vmax] = velocityRangeToMs(rangeMin, rangeMax, units);
90
+ return [vmin ?? 0, vmax ?? 80];
91
+ }
92
+ if (nexradDataSource === 'level3' && (v === 'N0H' || v === 'HHC')) {
93
+ const lo = rangeMin ?? 0;
94
+ let hi = rangeMax ?? 11;
95
+ if (hi > 11) hi = 11;
96
+ if (hi < lo) hi = lo;
97
+ return [lo, hi];
98
+ }
99
+ if (v === 'KDP') {
100
+ const lo = rangeMin ?? -2;
101
+ let hi = rangeMax ?? 8;
102
+ if (hi < lo) hi = lo;
103
+ return [lo, hi];
104
+ }
105
+ return [rangeMin ?? 0, rangeMax ?? 80];
106
+ }
107
+ function nexradLevel3IsHydrometeorClassification(radarVariable) {
108
+ const v = (radarVariable || '').toUpperCase();
109
+ return v === 'N0H' || v === 'HHC';
110
+ }
111
+ const NEXRAD_HYDROMETEOR_CLASS_LABELS = ['Biological', 'Ground clutter', 'Ice crystals', 'Dry snow', 'Wet snow', 'Light rain', 'Heavy rain', 'Big drops', 'Graupel', 'Hail/rain', 'Large hail', 'Giant hail'];
112
+ function nexradHydrometeorLabelForClassIndex(value) {
113
+ const idx = Math.round(Number(value));
114
+ if (idx >= 12) return null;
115
+ if (idx >= 0 && idx < NEXRAD_HYDROMETEOR_CLASS_LABELS.length) {
116
+ return NEXRAD_HYDROMETEOR_CLASS_LABELS[idx];
117
+ }
118
+ return `Class ${idx}`;
119
+ }
120
+ function velocityMsToDisplay(valueMs, displayUnit) {
121
+ if (!displayUnit || displayUnit.toLowerCase() === 'm/s' || displayUnit.toLowerCase() === 'ms') {
122
+ return valueMs;
123
+ }
124
+ const fromMs = (0, _javascriptSdk.getUnitConversionFunction)('m/s', displayUnit, 'nexrad_vel');
125
+ return fromMs ? fromMs(valueMs) : valueMs;
126
+ }
127
+ function beamHeightKm(slantRangeKm, elevDeg) {
128
+ const el = elevDeg * Math.PI / 180;
129
+ const ReKm = 6371000 * 4 / (3 * 1000);
130
+ const cosEl = Math.max(Math.cos(el), 0.05);
131
+ const s = slantRangeKm / cosEl;
132
+ return Math.sqrt(s * s + ReKm * ReKm + 2 * s * ReKm * Math.sin(el)) - ReKm;
133
+ }
134
+ function formatNexradInspectNumeric(raw, radarVariable) {
135
+ const vu = (radarVariable || '').toUpperCase();
136
+ const vl = radarVariable || '';
137
+ if (vu.includes('RATE') || vl.toLowerCase().includes('rate')) {
138
+ return Number(raw.toFixed(3).replace(/\.?0+$/, ''));
139
+ }
140
+ if (vu === 'RHO' || vu === 'ZDR' || vl.includes('RhoHV') || vl.includes('Zdr')) {
141
+ return Number(raw.toFixed(2));
142
+ }
143
+ if (Math.abs(raw) < 10) return Number(raw.toFixed(1));
144
+ return Math.round(raw);
145
+ }
146
+
147
+ /** Keep low so Level-2 decode stays off the critical path for touches/animations (was 4). */
148
+ const PRELOAD_CONCURRENCY = 1;
149
+ function yieldToJsEventLoop() {
150
+ return new Promise(resolve => setTimeout(resolve, 0));
151
+ }
152
+
153
+ /** Match mapsgl {@link MapboxRadarLayer} geometry LRU — reuse serialized native payloads when scrubbing. */
154
+ const NATIVE_UPLOAD_JSON_LRU_MAX = 12;
155
+ function rleCompressGateData(gateData) {
156
+ const len = gateData.length;
157
+ const out = new Uint8Array(len * 2);
158
+ let outIdx = 0;
159
+ let i = 0;
160
+ while (i < len) {
161
+ let val0 = gateData[i];
162
+ let val1 = gateData[i + 1];
163
+ let count = 1;
164
+ let maxCount = len - i >> 1;
165
+ if (maxCount > 65535) maxCount = 65535;
166
+ let j = i + 2;
167
+ while (count < maxCount && gateData[j] === val0 && gateData[j + 1] === val1) {
168
+ count++;
169
+ j += 2;
170
+ }
171
+ out[outIdx++] = count & 0xFF;
172
+ out[outIdx++] = count >> 8 & 0xFF;
173
+ out[outIdx++] = val0;
174
+ out[outIdx++] = val1;
175
+ i = j;
176
+ }
177
+ return out.subarray(0, outIdx);
178
+ }
179
+ class NexradAndroidController {
180
+ /**
181
+ * @param {*} core - AguaceroCore instance
182
+ * @param {React.MutableRefObject<{ uploadNexradFrame?: (s: string) => void; uploadNexradStyleOnly?: (s: string) => void; clearNexrad?: () => void; activateNexradCachedFrame?: (k: string) => void } | null>} layerRef
183
+ * @param {object} [options]
184
+ */
185
+ constructor(core, layerRef, options = {}) {
186
+ this.core = core;
187
+ this._layerRef = layerRef;
188
+ this._lastSyncKey = null;
189
+ this._abort = null;
190
+ this._interpolateColormap = options.interpolateNexradColormap !== false;
191
+ this._gateSmoothing = options.nexradGateSmoothing === true;
192
+ this._frameCache = new Map();
193
+ /** WeakMap: decoded frame → Map(uploadOptsKey → prepared frame). Avoids O(n²) canonical re-bin every map move. */
194
+ this._gpuReadoutPrep = new WeakMap();
195
+ this._preloadAbort = null;
196
+ this._preloadTimelineSig = null;
197
+ this._nativeFrameUploaded = false;
198
+ /** @type {{ valueScale: number; valueOffset: number } | null} */
199
+ this._lastUploadMeta = null;
200
+ /** @type {Map<string, { json: string; valueScale: number; valueOffset: number }>} */
201
+ this._nativeUploadJsonLru = new Map();
202
+ /** @type {Set<string>} Sync keys with gate texture registered in Android GL cache (AguaceroNexradGpuFrameReady). */
203
+ this._nativeGpuReadyKeys = new Set();
204
+ /** @type {Map<string, { valueScale: number; valueOffset: number }>} */
205
+ this._uploadMetaBySyncKey = new Map();
206
+ /** @type {{ remove: () => void } | null} */
207
+ this._gpuReadyEventSub = null;
208
+ try {
209
+ const {
210
+ DeviceEventEmitter
211
+ } = require('react-native');
212
+ if (DeviceEventEmitter && typeof DeviceEventEmitter.addListener === 'function') {
213
+ this._gpuReadyEventSub = DeviceEventEmitter.addListener('AguaceroNexradGpuFrameReady', e => {
214
+ const k = e && e.nativeGpuCacheKey;
215
+ if (typeof k === 'string' && k.length > 0) {
216
+ this._nativeGpuReadyKeys.add(k);
217
+ this._trimNativeGpuReadyKeys(32);
218
+ (0, _nexradDiag.nexradDiag)('gpuReady.event', {
219
+ keyTail: k.slice(-80),
220
+ setSize: this._nativeGpuReadyKeys.size
221
+ });
222
+ }
223
+ });
224
+ }
225
+ } catch (err) {
226
+ (0, _nexradDiag.nexradDiag)('gpuReady.subscribeFailed', {
227
+ message: err?.message || String(err)
228
+ });
229
+ }
230
+ const base = typeof core?.baseGridUrl === 'string' ? core.baseGridUrl.replace(/\/$/, '') : '';
231
+ if (base && typeof navigator !== 'undefined' && navigator.product === 'ReactNative') {
232
+ (0, _radarArchiveCoreBundled.setNexradSitesJsonUrl)(`${base}/data/nexrad.json`);
233
+ (0, _radarArchiveCoreBundled.setNexradSitesFetchAuth)(core.apiKey || '', core.bundleId || '');
234
+ }
235
+ (0, _nexradDiag.nexradDiag)('controller.construct', {
236
+ hasCore: !!core,
237
+ apiKeyLen: (core?.apiKey || '').length,
238
+ bundleIdLen: (core?.bundleId || '').length,
239
+ interpolateColormap: this._interpolateColormap,
240
+ gateSmoothing: this._gateSmoothing,
241
+ rnSitesUrl: base ? `${base}/data/nexrad.json` : '(unset)'
242
+ });
243
+ }
244
+ _trimNativeGpuReadyKeys(max) {
245
+ while (this._nativeGpuReadyKeys.size > max) {
246
+ const first = this._nativeGpuReadyKeys.values().next().value;
247
+ if (first === undefined) break;
248
+ this._nativeGpuReadyKeys.delete(first);
249
+ }
250
+ }
251
+ _rememberUploadMetaForSyncKey(syncKey, valueScale, valueOffset) {
252
+ this._uploadMetaBySyncKey.set(syncKey, {
253
+ valueScale,
254
+ valueOffset
255
+ });
256
+ while (this._uploadMetaBySyncKey.size > 40) {
257
+ const k = this._uploadMetaBySyncKey.keys().next().value;
258
+ if (k === undefined) break;
259
+ this._uploadMetaBySyncKey.delete(k);
260
+ }
261
+ }
262
+ updateStyleOptions(options) {
263
+ if (options.interpolateNexradColormap != null) {
264
+ this._interpolateColormap = options.interpolateNexradColormap !== false;
265
+ }
266
+ if (options.nexradGateSmoothing != null) {
267
+ this._gateSmoothing = options.nexradGateSmoothing === true;
268
+ }
269
+ }
270
+ destroy() {
271
+ (0, _nexradDiag.nexradDiag)('controller.destroy');
272
+ try {
273
+ this._gpuReadyEventSub?.remove();
274
+ } catch (_) {
275
+ /* ignore */
276
+ }
277
+ this._gpuReadyEventSub = null;
278
+ this._nativeGpuReadyKeys.clear();
279
+ this._uploadMetaBySyncKey.clear();
280
+ this._abort?.abort();
281
+ this._abort = null;
282
+ this._preloadAbort?.abort();
283
+ this._preloadAbort = null;
284
+ this._frameCache.clear();
285
+ this._gpuReadoutPrep = new WeakMap();
286
+ this._preloadTimelineSig = null;
287
+ this._lastSyncKey = null;
288
+ this._nativeFrameUploaded = false;
289
+ this._lastUploadMeta = null;
290
+ this._nativeUploadJsonLru.clear();
291
+ this._layerRef?.current?.clearNexrad?.();
292
+ }
293
+ _getPreparedReadoutFrame(frame, uploadOpts) {
294
+ let byOpts = this._gpuReadoutPrep.get(frame);
295
+ if (!byOpts) {
296
+ byOpts = new Map();
297
+ this._gpuReadoutPrep.set(frame, byOpts);
298
+ }
299
+ const optKey = uploadOpts && typeof uploadOpts === 'object' ? JSON.stringify(uploadOpts) : String(uploadOpts);
300
+ let prepared = byOpts.get(optKey);
301
+ if (!prepared) {
302
+ prepared = (0, _radarFrameGpuMatchBundled.prepareRadarFrameForGpuReadout)(frame, uploadOpts);
303
+ byOpts.set(optKey, prepared);
304
+ }
305
+ return prepared;
306
+ }
307
+ _native() {
308
+ return this._layerRef?.current;
309
+ }
310
+ _lutPack(state) {
311
+ const radarVar = (state.nexradProduct || 'REF').toUpperCase();
312
+ const colormapFlat = state.colormap;
313
+ const colormapForShader = colormapToMs(colormapFlat, radarVar, state.units);
314
+ const [shaderMin, shaderMax] = radarShaderValueRange(colormapFlat?.[0], colormapFlat?.[colormapFlat.length - 2], radarVar, state.units, state.nexradDataSource);
315
+ const {
316
+ bytes,
317
+ discreteIntegerLut
318
+ } = (0, _nexradLutBuild.buildNexradLutRgba)(colormapForShader, shaderMin, shaderMax, this._interpolateColormap);
319
+ return {
320
+ lutB64: (0, _base64Js.fromByteArray)(bytes),
321
+ lutMin: shaderMin,
322
+ lutMax: shaderMax,
323
+ discreteIntegerLut
324
+ };
325
+ }
326
+
327
+ /**
328
+ * LRU for full native JSON payloads (parity with mapsgl gate-texture reuse — avoids base64 + stringify on repeat scrubs).
329
+ * @param {string} syncKey
330
+ * @returns {{ json: string; valueScale: number; valueOffset: number } | null}
331
+ */
332
+ _nativeUploadJsonLruTouch(syncKey) {
333
+ const ent = this._nativeUploadJsonLru.get(syncKey);
334
+ if (!ent) return null;
335
+ this._nativeUploadJsonLru.delete(syncKey);
336
+ this._nativeUploadJsonLru.set(syncKey, ent);
337
+ return ent;
338
+ }
339
+
340
+ /** @param {string} syncKey @param {{ json: string; valueScale: number; valueOffset: number }} entry */
341
+ _nativeUploadJsonLruPut(syncKey, entry) {
342
+ if (this._nativeUploadJsonLru.has(syncKey)) this._nativeUploadJsonLru.delete(syncKey);
343
+ this._nativeUploadJsonLru.set(syncKey, entry);
344
+ while (this._nativeUploadJsonLru.size > NATIVE_UPLOAD_JSON_LRU_MAX) {
345
+ const oldest = this._nativeUploadJsonLru.keys().next().value;
346
+ if (oldest === undefined) break;
347
+ this._nativeUploadJsonLru.delete(oldest);
348
+ }
349
+ }
350
+
351
+ /**
352
+ * Full-frame JSON includes LUT + opacity + shader toggles; keep LRU key aligned so scrubbing
353
+ * cannot resurrect an outdated style after the user changes only presentation options.
354
+ */
355
+ _nativeUploadLruKey(state, syncKey) {
356
+ return `${syncKey}|o:${state.opacity ?? 1}|g:${this._gateSmoothing ? 1 : 0}|i:${this._interpolateColormap ? 1 : 0}`;
357
+ }
358
+
359
+ /**
360
+ * @param {*} state
361
+ * @param {*} frame - decoded archive frame
362
+ * @param {{ fetchKey: string }} p - from {@link _buildFetchParamsForUnix}
363
+ * @param {number} unix
364
+ */
365
+ _uploadFrameToNative(state, frame, p, unix) {
366
+ const uploadTotal = (0, _nexradDiag.nexradPerfSpan)(`uploadFrame.total site=${state.nexradSite} unix=${unix} var=${p?.radarVar ?? state.nexradProduct}`);
367
+ const n = this._native();
368
+ if (!n?.uploadNexradFrame) {
369
+ (0, _nexradDiag.nexradDiag)('native.uploadSkipped', {
370
+ reason: !n ? 'noLayerRef' : 'noUploadNexradFrameMethod',
371
+ site: state.nexradSite
372
+ });
373
+ uploadTotal.end({
374
+ outcome: 'skippedNoNative'
375
+ });
376
+ return;
377
+ }
378
+ const syncKey = this._syncIdentity(state, p, unix);
379
+ const lruKey = this._nativeUploadLruKey(state, syncKey);
380
+ const lruHit = this._nativeUploadJsonLruTouch(lruKey);
381
+ if (lruHit) {
382
+ this._lastUploadMeta = {
383
+ valueScale: lruHit.valueScale,
384
+ valueOffset: lruHit.valueOffset
385
+ };
386
+ this._rememberUploadMetaForSyncKey(syncKey, lruHit.valueScale, lruHit.valueOffset);
387
+ if (n.activateNexradCachedFrame && this._nativeGpuReadyKeys.has(syncKey)) {
388
+ (0, _nexradDiag.nexradDiag)('native.uploadFrame.gpuActivateOnly', {
389
+ site: state.nexradSite,
390
+ syncKeyTail: syncKey.slice(-80),
391
+ jsonCharsSkipped: lruHit.json.length
392
+ });
393
+ const tAct = (0, _nexradDiag.nexradPerfSpan)('uploadFrame.nativeGpuActivateOnly');
394
+ n.activateNexradCachedFrame(syncKey);
395
+ tAct.end({
396
+ keyLen: syncKey.length
397
+ });
398
+ const tStyle = (0, _nexradDiag.nexradPerfSpan)('uploadFrame.styleAfterGpuActivate');
399
+ this.applyStyleFromState(state);
400
+ tStyle.end({});
401
+ this._nativeFrameUploaded = true;
402
+ uploadTotal.end({
403
+ outcome: 'gpuActivateOnly',
404
+ jsonCharsSkipped: lruHit.json.length
405
+ });
406
+ return;
407
+ }
408
+ (0, _nexradDiag.nexradDiag)('native.uploadFrame.jsonLruHit', {
409
+ site: state.nexradSite,
410
+ jsonChars: lruHit.json.length
411
+ });
412
+ const bridge = (0, _nexradDiag.nexradPerfSpan)('uploadFrame.nativeJsonLru.bridgeDispatch');
413
+ n.uploadNexradFrame(lruHit.json);
414
+ bridge.end({
415
+ jsonChars: lruHit.json.length,
416
+ path: 'jsonLruHit'
417
+ });
418
+ this._nativeFrameUploaded = true;
419
+ uploadTotal.end({
420
+ outcome: 'jsonLruHit',
421
+ jsonChars: lruHit.json.length
422
+ });
423
+ return;
424
+ }
425
+ const tOpts = (0, _nexradDiag.nexradPerfSpan)('uploadFrame.mapboxFrameUploadOptions');
426
+ const uploadOpts = (0, _nexradMapboxFrameOptsBundled.mapboxFrameUploadOptionsForNexradState)(state);
427
+ tOpts.end({});
428
+
429
+ // Skip JS sorting for Android native upload
430
+ // We pass the raw frame and let Android do the sorting/canonicalization
431
+ const rawFrame = frame;
432
+ this._lastUploadMeta = {
433
+ valueScale: rawFrame.valueScale,
434
+ valueOffset: rawFrame.valueOffset
435
+ };
436
+ const tLut = (0, _nexradDiag.nexradPerfSpan)('uploadFrame.lutPack_buildNexradLutRgba');
437
+ const style = this._lutPack(state);
438
+ tLut.end({
439
+ lutB64Chars: style.lutB64?.length ?? 0,
440
+ discreteIntegerLut: style.discreteIntegerLut,
441
+ lutMin: style.lutMin,
442
+ lutMax: style.lutMax
443
+ });
444
+ const tRay = (0, _nexradDiag.nexradPerfSpan)('uploadFrame.rayBoundariesToJsArray');
445
+ const rayBoundaries = rawFrame.rayBoundariesDeg?.slice ? Array.from(rawFrame.rayBoundariesDeg) : [...(rawFrame.rayBoundariesDeg || [])];
446
+ tRay.end({
447
+ len: rayBoundaries.length
448
+ });
449
+ const tB64 = (0, _nexradDiag.nexradPerfSpan)('uploadFrame.gateData_toBase64');
450
+ const rleGateData = rleCompressGateData(rawFrame.gateData);
451
+ const gateB64 = (0, _base64Js.fromByteArray)(rleGateData);
452
+ tB64.end({
453
+ gateB64Chars: gateB64.length,
454
+ rleBytes: rleGateData.length,
455
+ rawBytes: rawFrame.gateData.length
456
+ });
457
+ const payload = {
458
+ gateB64,
459
+ gateIsRle: true,
460
+ nGates: rawFrame.nGates,
461
+ nRays: rawFrame.nRays,
462
+ stationLat: rawFrame.stationLat,
463
+ stationLon: rawFrame.stationLon,
464
+ firstGateKm: rawFrame.firstGateKm,
465
+ gateWidthKm: rawFrame.gateWidthKm,
466
+ rayBoundaries,
467
+ lutB64: style.lutB64,
468
+ valueScale: rawFrame.valueScale,
469
+ valueOffset: rawFrame.valueOffset,
470
+ lutMin: style.lutMin,
471
+ lutMax: style.lutMax,
472
+ discreteIntegerLut: style.discreteIntegerLut,
473
+ opacity: state.opacity ?? 1,
474
+ gateSmoothPolar: this._gateSmoothing ? 1 : 0,
475
+ interpolateLut: this._interpolateColormap ? 1 : 0,
476
+ nativeGpuCacheKey: syncKey,
477
+ uploadOpts: uploadOpts
478
+ };
479
+ const tJson = (0, _nexradDiag.nexradPerfSpan)('uploadFrame.JSON_stringify_payload');
480
+ const json = JSON.stringify(payload);
481
+ tJson.end({
482
+ jsonChars: json.length,
483
+ rayBoundaryLen: rayBoundaries.length
484
+ });
485
+ const tLruPut = (0, _nexradDiag.nexradPerfSpan)('uploadFrame.nativeUploadJsonLruPut');
486
+ this._nativeUploadJsonLruPut(lruKey, {
487
+ json,
488
+ valueScale: rawFrame.valueScale,
489
+ valueOffset: rawFrame.valueOffset
490
+ });
491
+ tLruPut.end({
492
+ lruKeyTail: lruKey.slice(-96),
493
+ lruSize: this._nativeUploadJsonLru.size
494
+ });
495
+ const gateSummary = (0, _nexradDiag.nexradDiagGateTextureSummary)(rawFrame.gateData, rawFrame.nGates, rawFrame.nRays, rawFrame.valueScale, rawFrame.valueOffset, style.lutMin, style.lutMax);
496
+ (0, _nexradDiag.nexradDiag)('native.uploadFrame.dispatch', {
497
+ site: state.nexradSite,
498
+ nGates: rawFrame.nGates,
499
+ nRays: rawFrame.nRays,
500
+ jsonChars: json.length,
501
+ uploadOpts: uploadOpts ?? null,
502
+ rayBoundaryLen: rayBoundaries.length,
503
+ firstGateKm: rawFrame.firstGateKm,
504
+ gateWidthKm: rawFrame.gateWidthKm,
505
+ gateSummary
506
+ });
507
+ const tBridge = (0, _nexradDiag.nexradPerfSpan)('uploadFrame.nativeBridge_uploadNexradFrame');
508
+ n.uploadNexradFrame(json);
509
+ tBridge.end({
510
+ jsonChars: json.length,
511
+ path: 'fullRebuild'
512
+ });
513
+ this._rememberUploadMetaForSyncKey(syncKey, rawFrame.valueScale, rawFrame.valueOffset);
514
+ this._nativeFrameUploaded = true;
515
+ uploadTotal.end({
516
+ outcome: 'fullPipeline',
517
+ jsonChars: json.length,
518
+ nGates: rawFrame.nGates,
519
+ nRays: rawFrame.nRays
520
+ });
521
+ }
522
+ applyStyleFromState(state) {
523
+ const perf = (0, _nexradDiag.nexradPerfSpan)(`applyStyleFromState site=${state.nexradSite} product=${state.nexradProduct} tilt=${state.nexradTilt}`);
524
+ const n = this._native();
525
+ if (!this._nativeFrameUploaded || !this._lastUploadMeta || !n?.uploadNexradStyleOnly) {
526
+ perf.end({
527
+ outcome: 'skipped',
528
+ nativeFrameUploaded: this._nativeFrameUploaded,
529
+ hasUploadMeta: !!this._lastUploadMeta,
530
+ hasStyleMethod: !!n?.uploadNexradStyleOnly
531
+ });
532
+ return;
533
+ }
534
+ const tLut = (0, _nexradDiag.nexradPerfSpan)('applyStyleFromState.lutPack');
535
+ const style = this._lutPack(state);
536
+ tLut.end({
537
+ lutB64Chars: style.lutB64?.length ?? 0
538
+ });
539
+ const payload = {
540
+ lutB64: style.lutB64,
541
+ valueScale: this._lastUploadMeta.valueScale,
542
+ valueOffset: this._lastUploadMeta.valueOffset,
543
+ lutMin: style.lutMin,
544
+ lutMax: style.lutMax,
545
+ discreteIntegerLut: style.discreteIntegerLut,
546
+ opacity: state.opacity ?? 1,
547
+ gateSmoothPolar: this._gateSmoothing ? 1 : 0,
548
+ interpolateLut: this._interpolateColormap ? 1 : 0
549
+ };
550
+ const tJson = (0, _nexradDiag.nexradPerfSpan)('applyStyleFromState.JSON_stringify');
551
+ const json = JSON.stringify(payload);
552
+ tJson.end({
553
+ jsonChars: json.length
554
+ });
555
+ const tBridge = (0, _nexradDiag.nexradPerfSpan)('applyStyleFromState.nativeBridge');
556
+ n.uploadNexradStyleOnly(json);
557
+ tBridge.end({
558
+ jsonChars: json.length
559
+ });
560
+ perf.end({
561
+ outcome: 'dispatched'
562
+ });
563
+ }
564
+ _resolveListingContext(state) {
565
+ const nk = this.core._nexradTimesCacheKey?.();
566
+ const ent = nk ? this.core.nexradTimesByStation?.[nk] : null;
567
+ // Merge so we still resolve object keys if the last state event omitted maps but the core cache is populated.
568
+ const timeToKeyMap = {
569
+ ...(ent?.timeToKeyMap || {}),
570
+ ...(state.nexradTimeToKeyMap || {})
571
+ };
572
+ const motionMap = {
573
+ ...(ent?.level3MotionTimeToKeyMap || {}),
574
+ ...(state.nexradLevel3MotionTimeToKeyMap || {})
575
+ };
576
+ return {
577
+ nk,
578
+ ent,
579
+ timeToKeyMap,
580
+ motionMap
581
+ };
582
+ }
583
+ _buildFetchParamsForUnix(state, unix) {
584
+ const radarVar = (state.nexradProduct || 'REF').toUpperCase();
585
+ const radarSource = state.nexradDataSource === 'level3' ? 'level3' : 'level2';
586
+ const groupId = (0, _javascriptSdk.nexradBinGroupIdForKey)((0, _javascriptSdk.variableToNexradGroup)(radarVar));
587
+ const {
588
+ timeToKeyMap,
589
+ motionMap
590
+ } = this._resolveListingContext(state);
591
+ const objectKey = timeToKeyMap[String(unix)];
592
+ if (!objectKey) {
593
+ (0, _nexradDiag.nexradDiag)('fetchParams.noObjectKeyForUnix', {
594
+ unix,
595
+ radarVar,
596
+ radarSource,
597
+ timeToKeyMapSize: Object.keys(timeToKeyMap || {}).length,
598
+ sampleUnixKeys: Object.keys(timeToKeyMap || {}).slice(0, 12)
599
+ });
600
+ return null;
601
+ }
602
+ let motionObjectKey = null;
603
+ if (radarVar === 'VEL' && state.nexradStormRelative) {
604
+ motionObjectKey = pickNearestLevel3ObjectKey(unix, motionMap);
605
+ }
606
+ const url = (0, _radarArchiveCoreBundled.objectKeyToUrl)(objectKey, radarSource);
607
+ const fetchKey = `${url}|${radarVar}|${radarSource}|${motionObjectKey || ''}`;
608
+ return {
609
+ objectKey,
610
+ url,
611
+ fetchKey,
612
+ motionObjectKey,
613
+ radarVar,
614
+ radarSource,
615
+ groupId
616
+ };
617
+ }
618
+ async _fetchFrame(state, unix, {
619
+ signal,
620
+ priority
621
+ }) {
622
+ const fetchPerf = (0, _nexradDiag.nexradPerfSpan)(`fetchAndParseArchive priority=${priority} site=${state.nexradSite} unix=${unix} product=${state.nexradProduct}`);
623
+ const p = this._buildFetchParamsForUnix(state, unix);
624
+ if (!p) {
625
+ fetchPerf.end({
626
+ ok: false,
627
+ reason: 'noFetchParams'
628
+ });
629
+ return null;
630
+ }
631
+ try {
632
+ const frame = await (0, _radarArchiveCoreBundled.fetchAndParseArchive)(p.url, p.objectKey, p.radarVar, p.groupId, p.radarSource, {
633
+ signal,
634
+ priority,
635
+ level3MotionObjectKey: p.motionObjectKey
636
+ });
637
+ fetchPerf.end({
638
+ ok: !!frame,
639
+ radarVar: p.radarVar,
640
+ radarSource: p.radarSource,
641
+ objectKeyTail: (p.objectKey || '').slice(-48),
642
+ motionKeyTail: (p.motionObjectKey || '').slice(-48)
643
+ });
644
+ return frame;
645
+ } catch (err) {
646
+ fetchPerf.end({
647
+ ok: false,
648
+ error: err?.message || String(err),
649
+ radarVar: p.radarVar,
650
+ radarSource: p.radarSource
651
+ });
652
+ throw err;
653
+ }
654
+ }
655
+ _preloadTimelineSignature(state) {
656
+ const nk = this.core._nexradTimesCacheKey?.() || '';
657
+ const ts = [...(state.availableNexradTimestamps || [])].map(Number).filter(t => Number.isFinite(t)).sort((a, b) => a - b).join(',');
658
+ const tilt = state.nexradTilt != null && Number.isFinite(Number(state.nexradTilt)) ? Number(state.nexradTilt).toFixed(3) : '';
659
+ return `${nk}|${ts}|sr:${state.nexradStormRelative ? 1 : 0}|tilt:${tilt}`;
660
+ }
661
+ _syncIdentity(state, p, unix) {
662
+ const tilt = state.nexradTilt != null && Number.isFinite(Number(state.nexradTilt)) ? Number(state.nexradTilt).toFixed(3) : '';
663
+ return `${p.fetchKey}|tilt:${tilt}|u:${unix}`;
664
+ }
665
+ preloadAllAvailable(state) {
666
+ if (!state.isNexrad || !state.nexradSite) return;
667
+ if (!ensureRadarArchiveBindings('preloadAllAvailable')) return;
668
+ const sig = this._preloadTimelineSignature(state);
669
+ if (sig === this._preloadTimelineSig) return;
670
+ this._preloadTimelineSig = sig;
671
+ this._preloadAbort?.abort();
672
+ this._preloadAbort = new AbortController();
673
+ const signal = this._preloadAbort.signal;
674
+
675
+ // Keep the volume currently on screen in the JS cache so getInspectPayload (mapsgl parity readouts)
676
+ // still works while we clear and rebuild the prefetch LRU — otherwise readouts stay null until
677
+ // this unix is fetched again (often last in the timeline).
678
+ const curUnix = state.nexradTimestamp != null && Number.isFinite(Number(state.nexradTimestamp)) ? Number(state.nexradTimestamp) : NaN;
679
+ const curP = Number.isFinite(curUnix) ? this._buildFetchParamsForUnix(state, curUnix) : null;
680
+ let preservedFetchKey = null;
681
+ let preservedFrame = null;
682
+ if (curP && this._frameCache.has(curP.fetchKey)) {
683
+ preservedFetchKey = curP.fetchKey;
684
+ preservedFrame = this._frameCache.get(curP.fetchKey);
685
+ }
686
+ this._frameCache.clear();
687
+ if (preservedFetchKey && preservedFrame) {
688
+ this._frameCache.set(preservedFetchKey, preservedFrame);
689
+ }
690
+ this._nativeUploadJsonLru.clear();
691
+ this._nativeGpuReadyKeys.clear();
692
+ this._uploadMetaBySyncKey.clear();
693
+ (0, _radarArchiveCoreBundled.setNexradArchiveApiKey)(this.core.apiKey || '');
694
+ (0, _radarArchiveCoreBundled.setNexradArchiveBundleId)(this.core.bundleId || '');
695
+ (0, _radarArchiveCoreBundled.setNexradSitesFetchAuth)(this.core.apiKey || '', this.core.bundleId || '');
696
+ const times = [...(state.availableNexradTimestamps || [])].map(Number).filter(t => Number.isFinite(t));
697
+ if (!times.length) {
698
+ (0, _nexradDiag.nexradDiag)('preload.skipNoTimestamps', {
699
+ site: state.nexradSite
700
+ });
701
+ return;
702
+ }
703
+ (0, _nexradDiag.nexradDiag)('preload.start', {
704
+ site: state.nexradSite,
705
+ timesCount: times.length,
706
+ firstUnix: times[0],
707
+ lastUnix: times[times.length - 1]
708
+ });
709
+ const snapshot = {
710
+ ...state
711
+ };
712
+ const preloadBatch = (0, _nexradDiag.nexradPerfSpan)(`preload.batch site=${state.nexradSite} times=${times.length}`);
713
+ let preloadCompleted = 0;
714
+ let preloadFailed = 0;
715
+ let preloadSkippedCached = 0;
716
+ const run = async () => {
717
+ let cursor = 0;
718
+ const work = async () => {
719
+ while (cursor < times.length && !signal.aborted) {
720
+ const i = cursor++;
721
+ const unix = times[i];
722
+ const slot = (0, _nexradDiag.nexradPerfSpan)(`preload.slot idx=${i + 1}/${times.length} unix=${unix}`);
723
+ const p = this._buildFetchParamsForUnix(snapshot, unix);
724
+ if (!p || signal.aborted) {
725
+ slot.end({
726
+ outcome: 'noParamsOrAborted'
727
+ });
728
+ } else if (this._frameCache.has(p.fetchKey)) {
729
+ preloadSkippedCached++;
730
+ slot.end({
731
+ outcome: 'alreadyCached',
732
+ fetchKeyTail: p.fetchKey.slice(-64)
733
+ });
734
+ } else {
735
+ try {
736
+ const frame = await this._fetchFrame(snapshot, unix, {
737
+ signal,
738
+ priority: 'prefetch'
739
+ });
740
+ if (frame && !signal.aborted) {
741
+ this._frameCache.set(p.fetchKey, frame);
742
+ preloadCompleted++;
743
+ slot.end({
744
+ outcome: 'cachedFrame',
745
+ fetchKeyTail: p.fetchKey.slice(-64),
746
+ cacheSizeAfter: this._frameCache.size
747
+ });
748
+ } else {
749
+ slot.end({
750
+ outcome: 'noFrame',
751
+ aborted: signal.aborted
752
+ });
753
+ }
754
+ } catch (err) {
755
+ preloadFailed++;
756
+ (0, _nexradDiag.nexradDiag)('preload.fetchFailed', {
757
+ unix,
758
+ message: err?.message || String(err)
759
+ });
760
+ slot.end({
761
+ outcome: 'error',
762
+ message: err?.message || String(err)
763
+ });
764
+ }
765
+ }
766
+ await yieldToJsEventLoop();
767
+ }
768
+ };
769
+ await Promise.all(Array.from({
770
+ length: PRELOAD_CONCURRENCY
771
+ }, () => work()));
772
+ preloadBatch.end({
773
+ outcome: signal.aborted ? 'aborted' : 'complete',
774
+ completed: preloadCompleted,
775
+ failed: preloadFailed,
776
+ skippedCached: preloadSkippedCached,
777
+ finalCacheSize: this._frameCache.size
778
+ });
779
+ };
780
+ void run();
781
+ }
782
+ async sync(state) {
783
+ const unixEarly = state.nexradTimestamp != null ? Number(state.nexradTimestamp) : NaN;
784
+ const syncTotal = (0, _nexradDiag.nexradPerfSpan)(`sync.total site=${state.nexradSite} unix=${unixEarly} product=${state.nexradProduct} source=${state.nexradDataSource} tilt=${state.nexradTilt}`);
785
+ if (!state.isNexrad || !state.nexradSite || state.nexradTimestamp == null) {
786
+ (0, _nexradDiag.nexradDiag)('sync.skipped', {
787
+ isNexrad: state.isNexrad,
788
+ site: state.nexradSite,
789
+ nexradTimestamp: state.nexradTimestamp
790
+ });
791
+ this.destroy();
792
+ syncTotal.end({
793
+ outcome: 'skippedNotNexradOrMissing'
794
+ });
795
+ return;
796
+ }
797
+ if (!ensureRadarArchiveBindings('sync')) {
798
+ syncTotal.end({
799
+ outcome: 'skippedMissingArchiveBindings'
800
+ });
801
+ return;
802
+ }
803
+ const tAuth = (0, _nexradDiag.nexradPerfSpan)('sync.setArchiveAuth');
804
+ (0, _radarArchiveCoreBundled.setNexradArchiveApiKey)(this.core.apiKey || '');
805
+ (0, _radarArchiveCoreBundled.setNexradArchiveBundleId)(this.core.bundleId || '');
806
+ (0, _radarArchiveCoreBundled.setNexradSitesFetchAuth)(this.core.apiKey || '', this.core.bundleId || '');
807
+ tAuth.end({});
808
+ const unix = Number(state.nexradTimestamp);
809
+ (0, _nexradDiag.nexradDiag)('sync.enter', {
810
+ site: state.nexradSite,
811
+ unix,
812
+ product: state.nexradProduct,
813
+ source: state.nexradDataSource,
814
+ apiKeyLen: (this.core.apiKey || '').length
815
+ });
816
+ const tParams = (0, _nexradDiag.nexradPerfSpan)('sync.buildFetchParams');
817
+ const p = this._buildFetchParamsForUnix(state, unix);
818
+ tParams.end({
819
+ ok: !!p
820
+ });
821
+ if (!p) {
822
+ const ctx = this._resolveListingContext(state);
823
+ (0, _nexradDiag.nexradDiag)('sync.abortedNoFetchParams', {
824
+ site: state.nexradSite,
825
+ unix,
826
+ cacheKey: ctx.nk,
827
+ timeToKeyMapSize: Object.keys(ctx.timeToKeyMap || {}).length,
828
+ sampleTimeKeys: Object.keys(ctx.timeToKeyMap || {}).slice(0, 8)
829
+ });
830
+ syncTotal.end({
831
+ outcome: 'noFetchParams'
832
+ });
833
+ return;
834
+ }
835
+ const tIdentity = (0, _nexradDiag.nexradPerfSpan)('sync.syncIdentity');
836
+ const syncKey = this._syncIdentity(state, p, unix);
837
+ tIdentity.end({
838
+ syncKeyTail: syncKey.slice(-96),
839
+ lastSyncKeyMatch: syncKey === this._lastSyncKey
840
+ });
841
+ const jsCachedForShortCircuit = this._frameCache.get(p.fetchKey);
842
+ if (syncKey === this._lastSyncKey && this._nativeFrameUploaded && jsCachedForShortCircuit) {
843
+ (0, _nexradDiag.nexradDiag)('sync.styleOnlyShortCircuit', {
844
+ site: state.nexradSite
845
+ });
846
+ const tStyle = (0, _nexradDiag.nexradPerfSpan)('sync.shortCircuit_styleOnly');
847
+ this.applyStyleFromState(state);
848
+ tStyle.end({});
849
+ syncTotal.end({
850
+ outcome: 'styleOnlyShortCircuit'
851
+ });
852
+ return;
853
+ }
854
+ const tCacheLookup = (0, _nexradDiag.nexradPerfSpan)('sync.memoryCacheLookup');
855
+ const cached = this._frameCache.get(p.fetchKey);
856
+ tCacheLookup.end({
857
+ hit: !!cached,
858
+ cacheSize: this._frameCache.size,
859
+ fetchKeyTail: p.fetchKey.slice(-80)
860
+ });
861
+ const tGpuTry = (0, _nexradDiag.nexradPerfSpan)('sync.tryGpuCacheActivate');
862
+ if (cached && this._nativeGpuReadyKeys.has(syncKey)) {
863
+ const n = this._native();
864
+ if (n?.activateNexradCachedFrame) {
865
+ (0, _nexradDiag.nexradDiag)('sync.gpuCacheActivate.enter', {
866
+ site: state.nexradSite,
867
+ unix,
868
+ syncKeyTail: syncKey.slice(-80),
869
+ gpuReadySetSize: this._nativeGpuReadyKeys.size
870
+ });
871
+ const tAct = (0, _nexradDiag.nexradPerfSpan)('sync.dispatchActivateCachedFrame');
872
+ n.activateNexradCachedFrame(syncKey);
873
+ tAct.end({
874
+ keyLen: syncKey.length
875
+ });
876
+ const tStyle = (0, _nexradDiag.nexradPerfSpan)('sync.applyStyleAfterGpuActivate');
877
+ this.applyStyleFromState(state);
878
+ tStyle.end({});
879
+ const meta = this._uploadMetaBySyncKey.get(syncKey);
880
+ if (meta) {
881
+ this._lastUploadMeta = {
882
+ valueScale: meta.valueScale,
883
+ valueOffset: meta.valueOffset
884
+ };
885
+ }
886
+ this._lastSyncKey = syncKey;
887
+ this._nativeFrameUploaded = true;
888
+ tGpuTry.end({
889
+ outcome: 'gpuCacheActivate',
890
+ gpuReadySetSize: this._nativeGpuReadyKeys.size
891
+ });
892
+ syncTotal.end({
893
+ outcome: 'gpuCacheActivate'
894
+ });
895
+ return;
896
+ }
897
+ }
898
+ tGpuTry.end({
899
+ outcome: 'noGpuActivate',
900
+ hasJsCachedFrame: !!cached,
901
+ gpuReadyForSyncKey: this._nativeGpuReadyKeys.has(syncKey),
902
+ hasActivateMethod: !!this._native()?.activateNexradCachedFrame
903
+ });
904
+ if (cached) {
905
+ (0, _nexradDiag.nexradDiag)('sync.uploadFromCache', {
906
+ fetchKeyTail: p.fetchKey.slice(-80)
907
+ });
908
+ const tUpload = (0, _nexradDiag.nexradPerfSpan)('sync.uploadFromMemoryCache_toNative');
909
+ this._uploadFrameToNative(state, cached, p, unix);
910
+ tUpload.end({});
911
+ this._lastSyncKey = syncKey;
912
+ syncTotal.end({
913
+ outcome: 'memoryCacheHit'
914
+ });
915
+ return;
916
+ }
917
+ this._abort?.abort();
918
+ this._abort = new AbortController();
919
+ (0, _nexradDiag.nexradDiag)('fetch.start', {
920
+ objectKey: p.objectKey,
921
+ radarVar: p.radarVar,
922
+ radarSource: p.radarSource
923
+ });
924
+ let frame;
925
+ try {
926
+ frame = await this._fetchFrame(state, unix, {
927
+ signal: this._abort.signal,
928
+ priority: 'display'
929
+ });
930
+ } catch (err) {
931
+ (0, _nexradDiag.nexradDiag)('fetch.error', {
932
+ message: err?.message || String(err)
933
+ });
934
+ syncTotal.end({
935
+ outcome: 'fetchThrew',
936
+ message: err?.message || String(err)
937
+ });
938
+ return;
939
+ }
940
+ if (!frame || this._abort.signal.aborted) {
941
+ (0, _nexradDiag.nexradDiag)('fetch.noFrame', {
942
+ aborted: this._abort.signal.aborted,
943
+ hadFrame: !!frame
944
+ });
945
+ syncTotal.end({
946
+ outcome: 'fetchNoFrame',
947
+ aborted: this._abort.signal.aborted,
948
+ hadFrame: !!frame
949
+ });
950
+ return;
951
+ }
952
+ const tPut = (0, _nexradDiag.nexradPerfSpan)('sync.frameCacheSet');
953
+ this._frameCache.set(p.fetchKey, frame);
954
+ tPut.end({
955
+ cacheSizeAfter: this._frameCache.size
956
+ });
957
+ (0, _nexradDiag.nexradDiag)('fetch.ok', {
958
+ fetchKeyTail: p.fetchKey.slice(-80)
959
+ });
960
+ const tUploadFetched = (0, _nexradDiag.nexradPerfSpan)('sync.uploadFetchedFrame_toNative');
961
+ this._uploadFrameToNative(state, frame, p, unix);
962
+ tUploadFetched.end({});
963
+ this._lastSyncKey = syncKey;
964
+ syncTotal.end({
965
+ outcome: 'fetchedAndUploaded'
966
+ });
967
+ }
968
+ getInspectPayload(lng, lat, state) {
969
+ if (!state?.isNexrad || !state.nexradSite || state.nexradTimestamp == null) {
970
+ return null;
971
+ }
972
+ if (state.visible === false || (state.opacity ?? 1) <= 0) {
973
+ return null;
974
+ }
975
+ const unix = Number(state.nexradTimestamp);
976
+ const p = this._buildFetchParamsForUnix(state, unix);
977
+ if (!p) {
978
+ return null;
979
+ }
980
+ const frame = this._frameCache.get(p.fetchKey);
981
+ if (!frame) {
982
+ return null;
983
+ }
984
+ const colormapFlat = state.colormap;
985
+ if (!colormapFlat || colormapFlat.length < 2) {
986
+ return null;
987
+ }
988
+ const rangeMin = colormapFlat[0];
989
+ const rangeMax = colormapFlat[colormapFlat.length - 2];
990
+ const radarVariable = (state.nexradProduct || 'REF').toUpperCase();
991
+ const radarSource = state.nexradDataSource === 'level3' ? 'level3' : 'level2';
992
+ const displayUnits = state.units && String(state.units).toLowerCase() !== 'none' ? state.units : isVelocityStyleRadarVar(radarVariable) ? 'm/s' : '';
993
+ const uploadOptsForReadout = (0, _nexradMapboxFrameOptsBundled.mapboxFrameUploadOptionsForNexradState)(state);
994
+ const gpuFrame = this._getPreparedReadoutFrame(frame, uploadOptsForReadout);
995
+ const sample = (0, _nexradCrossSectionSampleAtLatLonBundled.sampleNexradFrameAtLatLon)(gpuFrame, lat, lng, {
996
+ smoothPolar: this._gateSmoothing
997
+ });
998
+ if (!sample) {
999
+ return null;
1000
+ }
1001
+ const valueMs = sample.value;
1002
+ const isHydro = radarSource === 'level3' && nexradLevel3IsHydrometeorClassification(radarVariable);
1003
+ let valueOut;
1004
+ let unitOut = displayUnits || '';
1005
+ if (isVelocityStyleRadarVar(radarVariable)) {
1006
+ valueOut = velocityMsToDisplay(valueMs, displayUnits);
1007
+ } else if (isHydro) {
1008
+ const label = nexradHydrometeorLabelForClassIndex(valueMs);
1009
+ if (label == null) {
1010
+ return null;
1011
+ }
1012
+ valueOut = label;
1013
+ unitOut = '';
1014
+ } else {
1015
+ valueOut = formatNexradInspectNumeric(valueMs, radarVariable);
1016
+ const bu = state.colormapBaseUnit;
1017
+ if (bu != null && String(bu).length > 0 && String(bu).toLowerCase() !== 'none') {
1018
+ unitOut = bu;
1019
+ }
1020
+ }
1021
+ let inRange;
1022
+ if (isHydro) {
1023
+ const idx = Math.round(Number(valueMs));
1024
+ inRange = (rangeMin == null || idx >= rangeMin) && (rangeMax == null || idx <= rangeMax);
1025
+ } else if (isVelocityStyleRadarVar(radarVariable)) {
1026
+ inRange = (rangeMin == null || valueOut >= rangeMin) && (rangeMax == null || valueOut <= rangeMax);
1027
+ } else {
1028
+ // Do not apply the colormap *lower* stop as a hard readout floor: weak echoes below the first
1029
+ // legend tick can still be drawn (LUT / GL), and users expect a number there.
1030
+ inRange = rangeMax == null || valueOut <= rangeMax;
1031
+ }
1032
+ if (!inRange) {
1033
+ return null;
1034
+ }
1035
+ const tiltDeg = Number.isFinite(state.nexradTilt) ? state.nexradTilt : (0, _javascriptSdk.getDefaultRadarTilt)(state.nexradSite);
1036
+ const bhKm = beamHeightKm(sample.groundRangeKm, tiltDeg);
1037
+ const metric = state.units === 'metric';
1038
+ const beamHeightDisplay = metric ? bhKm : bhKm * 3.280839895013123;
1039
+ const beamUnit = metric ? 'km' : 'kft';
1040
+ const fldKey = state.variable;
1041
+ return {
1042
+ lngLat: {
1043
+ lng,
1044
+ lat
1045
+ },
1046
+ variable: {
1047
+ code: fldKey,
1048
+ name: this.core.getVariableDisplayName(fldKey)
1049
+ },
1050
+ value: valueOut,
1051
+ unit: unitOut,
1052
+ beamHeight: Number.isFinite(beamHeightDisplay) && Number.isFinite(bhKm) ? {
1053
+ value: beamHeightDisplay,
1054
+ unit: beamUnit
1055
+ } : null
1056
+ };
1057
+ }
1058
+ }
1059
+ exports.NexradAndroidController = NexradAndroidController;
1060
+ //# sourceMappingURL=nexradAndroidController.js.map