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