@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,576 @@
|
|
|
1
|
+
package com.aguacerowx.reactnative;
|
|
2
|
+
|
|
3
|
+
import android.opengl.GLES20;
|
|
4
|
+
import android.util.Log;
|
|
5
|
+
|
|
6
|
+
import androidx.annotation.NonNull;
|
|
7
|
+
import androidx.annotation.Nullable;
|
|
8
|
+
|
|
9
|
+
import com.mapbox.maps.CustomLayerHost;
|
|
10
|
+
import com.mapbox.maps.CustomLayerRenderParameters;
|
|
11
|
+
|
|
12
|
+
import java.nio.ByteBuffer;
|
|
13
|
+
import java.nio.ByteOrder;
|
|
14
|
+
import java.nio.FloatBuffer;
|
|
15
|
+
import java.nio.IntBuffer;
|
|
16
|
+
import java.util.ArrayDeque;
|
|
17
|
+
import java.util.ArrayList;
|
|
18
|
+
import java.util.Iterator;
|
|
19
|
+
import java.util.LinkedHashMap;
|
|
20
|
+
import java.util.List;
|
|
21
|
+
import java.util.Map;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Mapbox Android custom layer port of mapsgl {@code SatelliteShaderManager} (GOES KTX2 → GL).
|
|
25
|
+
*/
|
|
26
|
+
public class SatelliteLayer implements CustomLayerHost {
|
|
27
|
+
|
|
28
|
+
private static final String TAG = "AguaceroSatellite";
|
|
29
|
+
private static final int MAX_GPU_CACHED_FRAMES = 16;
|
|
30
|
+
|
|
31
|
+
private static final int GL_COMPRESSED_RGBA_ASTC_4x4_KHR = 0x93B0;
|
|
32
|
+
private static final int GL_COMPRESSED_RGBA8_ETC2_EAC = 0x9278;
|
|
33
|
+
|
|
34
|
+
private final Object lock = new Object();
|
|
35
|
+
|
|
36
|
+
private int program;
|
|
37
|
+
private int uMatrix;
|
|
38
|
+
private int uTexture;
|
|
39
|
+
private int uColormap;
|
|
40
|
+
private int uIsTrueColor;
|
|
41
|
+
private int uUseColormap;
|
|
42
|
+
private int uOpacity;
|
|
43
|
+
private int uUvTransform;
|
|
44
|
+
private int aPos;
|
|
45
|
+
private int aTexCoord;
|
|
46
|
+
|
|
47
|
+
private int defaultIrColormapTex;
|
|
48
|
+
private int defaultWvColormapTex;
|
|
49
|
+
private int userColormapTex;
|
|
50
|
+
|
|
51
|
+
private volatile boolean visible = true;
|
|
52
|
+
private volatile float opacity = 1f;
|
|
53
|
+
private volatile int fillSmoothing = 0;
|
|
54
|
+
|
|
55
|
+
/** Access-ordered LRU — eldest iterator entry is LRU. */
|
|
56
|
+
private final LinkedHashMap<Long, GpuSlot> cache =
|
|
57
|
+
new LinkedHashMap<Long, GpuSlot>(MAX_GPU_CACHED_FRAMES + 1, 0.75f, true);
|
|
58
|
+
|
|
59
|
+
private final List<GpuSlot> pendingDelete = new ArrayList<>();
|
|
60
|
+
|
|
61
|
+
@Nullable private Long activeUnix;
|
|
62
|
+
@Nullable private Long targetUnix;
|
|
63
|
+
|
|
64
|
+
static final class PendingGpuUpload {
|
|
65
|
+
final long unix;
|
|
66
|
+
final SatelliteMeshBuilder.MeshResult mesh;
|
|
67
|
+
final SatelliteKtxDecoder.Parsed decoded;
|
|
68
|
+
final boolean trueColor;
|
|
69
|
+
@NonNull final String colormapKind;
|
|
70
|
+
final boolean useColormap;
|
|
71
|
+
|
|
72
|
+
PendingGpuUpload(
|
|
73
|
+
long unix,
|
|
74
|
+
SatelliteMeshBuilder.MeshResult mesh,
|
|
75
|
+
SatelliteKtxDecoder.Parsed decoded,
|
|
76
|
+
boolean trueColor,
|
|
77
|
+
@NonNull String colormapKind,
|
|
78
|
+
boolean useColormap) {
|
|
79
|
+
this.unix = unix;
|
|
80
|
+
this.mesh = mesh;
|
|
81
|
+
this.decoded = decoded;
|
|
82
|
+
this.trueColor = trueColor;
|
|
83
|
+
this.colormapKind = colormapKind;
|
|
84
|
+
this.useColormap = useColormap;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
private final ArrayDeque<PendingGpuUpload> pendingGpuQueue = new ArrayDeque<>();
|
|
89
|
+
|
|
90
|
+
private byte[] pendingUserColormap;
|
|
91
|
+
private volatile boolean pendingUserColormapDirty;
|
|
92
|
+
|
|
93
|
+
private static final class GpuSlot {
|
|
94
|
+
final long unix;
|
|
95
|
+
final int textureId;
|
|
96
|
+
final int vbo;
|
|
97
|
+
final int ibo;
|
|
98
|
+
final int indexCount;
|
|
99
|
+
final boolean trueColor;
|
|
100
|
+
final boolean useColormap;
|
|
101
|
+
@NonNull final String colormapKind;
|
|
102
|
+
|
|
103
|
+
GpuSlot(
|
|
104
|
+
long unix,
|
|
105
|
+
int textureId,
|
|
106
|
+
int vbo,
|
|
107
|
+
int ibo,
|
|
108
|
+
int indexCount,
|
|
109
|
+
boolean trueColor,
|
|
110
|
+
boolean useColormap,
|
|
111
|
+
@NonNull String colormapKind) {
|
|
112
|
+
this.unix = unix;
|
|
113
|
+
this.textureId = textureId;
|
|
114
|
+
this.vbo = vbo;
|
|
115
|
+
this.ibo = ibo;
|
|
116
|
+
this.indexCount = indexCount;
|
|
117
|
+
this.trueColor = trueColor;
|
|
118
|
+
this.useColormap = useColormap;
|
|
119
|
+
this.colormapKind = colormapKind;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
private static int compileShader(int type, String src) {
|
|
124
|
+
int sh = GLES20.glCreateShader(type);
|
|
125
|
+
GLES20.glShaderSource(sh, src);
|
|
126
|
+
GLES20.glCompileShader(sh);
|
|
127
|
+
int[] ok = new int[1];
|
|
128
|
+
GLES20.glGetShaderiv(sh, GLES20.GL_COMPILE_STATUS, ok, 0);
|
|
129
|
+
if (ok[0] == 0) {
|
|
130
|
+
Log.e(TAG, "shader compile failed: " + GLES20.glGetShaderInfoLog(sh));
|
|
131
|
+
GLES20.glDeleteShader(sh);
|
|
132
|
+
return 0;
|
|
133
|
+
}
|
|
134
|
+
return sh;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
@Override
|
|
138
|
+
public void initialize() {
|
|
139
|
+
String vs =
|
|
140
|
+
"attribute vec2 a_pos;\n"
|
|
141
|
+
+ "attribute vec2 a_texCoord;\n"
|
|
142
|
+
+ "uniform mat4 u_matrix;\n"
|
|
143
|
+
+ "uniform vec4 u_uv_transform;\n"
|
|
144
|
+
+ "varying vec2 v_texCoord;\n"
|
|
145
|
+
+ "void main() {\n"
|
|
146
|
+
+ " gl_Position = u_matrix * vec4(a_pos, 0.0, 1.0);\n"
|
|
147
|
+
+ " v_texCoord = a_texCoord * u_uv_transform.xy + u_uv_transform.zw;\n"
|
|
148
|
+
+ "}\n";
|
|
149
|
+
|
|
150
|
+
String fs =
|
|
151
|
+
"precision mediump float;\n"
|
|
152
|
+
+ "varying vec2 v_texCoord;\n"
|
|
153
|
+
+ "uniform sampler2D u_texture;\n"
|
|
154
|
+
+ "uniform sampler2D u_colormap;\n"
|
|
155
|
+
+ "uniform bool u_is_true_color;\n"
|
|
156
|
+
+ "uniform bool u_use_colormap;\n"
|
|
157
|
+
+ "uniform float u_opacity;\n"
|
|
158
|
+
+ "void main() {\n"
|
|
159
|
+
+ " vec4 texColor = texture2D(u_texture, v_texCoord);\n"
|
|
160
|
+
+ " vec3 rawColor = texColor.rgb;\n"
|
|
161
|
+
+ " if (u_is_true_color) {\n"
|
|
162
|
+
+ " gl_FragColor = vec4(rawColor, texColor.a * u_opacity);\n"
|
|
163
|
+
+ " } else {\n"
|
|
164
|
+
+ " float luminance = rawColor.r;\n"
|
|
165
|
+
+ " if (u_use_colormap) {\n"
|
|
166
|
+
+ " float intensity = clamp(luminance, 0.0, 1.0);\n"
|
|
167
|
+
+ " vec3 colorMapped = texture2D(u_colormap, vec2(intensity, 0.5)).rgb;\n"
|
|
168
|
+
+ " gl_FragColor = vec4(colorMapped, u_opacity);\n"
|
|
169
|
+
+ " } else {\n"
|
|
170
|
+
+ " float val = clamp(luminance * 1.7, 0.0, 1.0);\n"
|
|
171
|
+
+ " gl_FragColor = vec4(val, val, val, u_opacity);\n"
|
|
172
|
+
+ " }\n"
|
|
173
|
+
+ " }\n"
|
|
174
|
+
+ "}\n";
|
|
175
|
+
|
|
176
|
+
int v = compileShader(GLES20.GL_VERTEX_SHADER, vs);
|
|
177
|
+
int f = compileShader(GLES20.GL_FRAGMENT_SHADER, fs);
|
|
178
|
+
program = GLES20.glCreateProgram();
|
|
179
|
+
GLES20.glAttachShader(program, v);
|
|
180
|
+
GLES20.glAttachShader(program, f);
|
|
181
|
+
GLES20.glLinkProgram(program);
|
|
182
|
+
GLES20.glDeleteShader(v);
|
|
183
|
+
GLES20.glDeleteShader(f);
|
|
184
|
+
|
|
185
|
+
uMatrix = GLES20.glGetUniformLocation(program, "u_matrix");
|
|
186
|
+
uTexture = GLES20.glGetUniformLocation(program, "u_texture");
|
|
187
|
+
uColormap = GLES20.glGetUniformLocation(program, "u_colormap");
|
|
188
|
+
uIsTrueColor = GLES20.glGetUniformLocation(program, "u_is_true_color");
|
|
189
|
+
uUseColormap = GLES20.glGetUniformLocation(program, "u_use_colormap");
|
|
190
|
+
uOpacity = GLES20.glGetUniformLocation(program, "u_opacity");
|
|
191
|
+
uUvTransform = GLES20.glGetUniformLocation(program, "u_uv_transform");
|
|
192
|
+
aPos = GLES20.glGetAttribLocation(program, "a_pos");
|
|
193
|
+
aTexCoord = GLES20.glGetAttribLocation(program, "a_texCoord");
|
|
194
|
+
|
|
195
|
+
byte[] ir = SatelliteColormap.defaultIrColormapRgba();
|
|
196
|
+
byte[] wv = SatelliteColormap.defaultWvColormapRgba();
|
|
197
|
+
defaultIrColormapTex = uploadColormapTexture(ir);
|
|
198
|
+
defaultWvColormapTex = uploadColormapTexture(wv);
|
|
199
|
+
userColormapTex = 0;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
private int uploadColormapTexture(byte[] rgba) {
|
|
203
|
+
int[] t = new int[1];
|
|
204
|
+
GLES20.glGenTextures(1, t, 0);
|
|
205
|
+
GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, t[0]);
|
|
206
|
+
GLES20.glTexParameteri(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_MIN_FILTER, GLES20.GL_LINEAR);
|
|
207
|
+
GLES20.glTexParameteri(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_MAG_FILTER, GLES20.GL_LINEAR);
|
|
208
|
+
GLES20.glTexParameteri(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_WRAP_S, GLES20.GL_CLAMP_TO_EDGE);
|
|
209
|
+
GLES20.glTexParameteri(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_WRAP_T, GLES20.GL_CLAMP_TO_EDGE);
|
|
210
|
+
ByteBuffer buf = ByteBuffer.allocateDirect(rgba.length).order(ByteOrder.nativeOrder());
|
|
211
|
+
buf.put(rgba);
|
|
212
|
+
buf.flip();
|
|
213
|
+
GLES20.glTexImage2D(
|
|
214
|
+
GLES20.GL_TEXTURE_2D,
|
|
215
|
+
0,
|
|
216
|
+
GLES20.GL_RGBA,
|
|
217
|
+
256,
|
|
218
|
+
1,
|
|
219
|
+
0,
|
|
220
|
+
GLES20.GL_RGBA,
|
|
221
|
+
GLES20.GL_UNSIGNED_BYTE,
|
|
222
|
+
buf);
|
|
223
|
+
GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, 0);
|
|
224
|
+
return t[0];
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
public void setVisible(boolean v) {
|
|
228
|
+
this.visible = v;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
public void setOpacity(float o) {
|
|
232
|
+
this.opacity = Math.max(0f, Math.min(1f, o));
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
public void setFillSmoothing(int s) {
|
|
236
|
+
this.fillSmoothing = s != 0 ? 1 : 0;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
public void setUserColormapRgba(@Nullable byte[] rgba256x1) {
|
|
240
|
+
synchronized (lock) {
|
|
241
|
+
pendingUserColormap = rgba256x1 != null ? rgba256x1.clone() : null;
|
|
242
|
+
pendingUserColormapDirty = true;
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
public void clearUserColormap() {
|
|
247
|
+
setUserColormapRgba(null);
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
public void setActiveUnix(@Nullable Long unix) {
|
|
251
|
+
synchronized (lock) {
|
|
252
|
+
targetUnix = unix;
|
|
253
|
+
if (unix != null && cache.containsKey(unix)) {
|
|
254
|
+
activeUnix = unix;
|
|
255
|
+
} else if (unix != null) {
|
|
256
|
+
activeUnix = null;
|
|
257
|
+
} else {
|
|
258
|
+
activeUnix = null;
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
/** Instant scrub when {@code unix} is already decoded — no decode work (parity with NEXRAD LRU activate). */
|
|
264
|
+
public void activateCachedUnix(long unix) {
|
|
265
|
+
synchronized (lock) {
|
|
266
|
+
targetUnix = unix;
|
|
267
|
+
if (cache.containsKey(unix)) {
|
|
268
|
+
activeUnix = unix;
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
public boolean isFrameCached(long unix) {
|
|
274
|
+
synchronized (lock) {
|
|
275
|
+
return cache.containsKey(unix);
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
/** Enqueue upload — must be called from the process main thread (after decode). GL work runs in {@link #render}. */
|
|
280
|
+
public void queueGpuUpload(@NonNull PendingGpuUpload upload) {
|
|
281
|
+
synchronized (lock) {
|
|
282
|
+
pendingGpuQueue.addLast(upload);
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
public void clearAll() {
|
|
287
|
+
synchronized (lock) {
|
|
288
|
+
pendingGpuQueue.clear();
|
|
289
|
+
for (GpuSlot s : cache.values()) {
|
|
290
|
+
pendingDelete.add(s);
|
|
291
|
+
}
|
|
292
|
+
cache.clear();
|
|
293
|
+
activeUnix = null;
|
|
294
|
+
targetUnix = null;
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
private void putSlotEvictLru(@NonNull GpuSlot slot) {
|
|
299
|
+
GpuSlot prev = cache.put(slot.unix, slot);
|
|
300
|
+
if (prev != null) {
|
|
301
|
+
pendingDelete.add(prev);
|
|
302
|
+
}
|
|
303
|
+
while (cache.size() > MAX_GPU_CACHED_FRAMES) {
|
|
304
|
+
Iterator<Map.Entry<Long, GpuSlot>> it = cache.entrySet().iterator();
|
|
305
|
+
if (!it.hasNext()) {
|
|
306
|
+
break;
|
|
307
|
+
}
|
|
308
|
+
GpuSlot victim = it.next().getValue();
|
|
309
|
+
it.remove();
|
|
310
|
+
pendingDelete.add(victim);
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
private void drainDeletesOnGl() {
|
|
315
|
+
for (GpuSlot s : pendingDelete) {
|
|
316
|
+
int[] tx = new int[] {s.textureId};
|
|
317
|
+
GLES20.glDeleteTextures(1, tx, 0);
|
|
318
|
+
int[] bufs = new int[] {s.vbo, s.ibo};
|
|
319
|
+
GLES20.glDeleteBuffers(2, bufs, 0);
|
|
320
|
+
}
|
|
321
|
+
pendingDelete.clear();
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
private void applyUserColormapGlIfNeeded() {
|
|
325
|
+
if (!pendingUserColormapDirty) return;
|
|
326
|
+
pendingUserColormapDirty = false;
|
|
327
|
+
byte[] rgba = pendingUserColormap;
|
|
328
|
+
if (userColormapTex != 0) {
|
|
329
|
+
GLES20.glDeleteTextures(1, new int[] {userColormapTex}, 0);
|
|
330
|
+
userColormapTex = 0;
|
|
331
|
+
}
|
|
332
|
+
if (rgba != null && rgba.length >= 256 * 4) {
|
|
333
|
+
userColormapTex = uploadColormapTexture(rgba);
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
private GpuSlot uploadPendingOnGl(@NonNull PendingGpuUpload p) {
|
|
338
|
+
SatelliteKtxDecoder.Parsed decoded = p.decoded;
|
|
339
|
+
int fmt = decoded.basisFormatOrdinal;
|
|
340
|
+
byte[] payload = decoded.payload;
|
|
341
|
+
int w = decoded.width;
|
|
342
|
+
int h = decoded.height;
|
|
343
|
+
|
|
344
|
+
int[] texArr = new int[1];
|
|
345
|
+
GLES20.glGenTextures(1, texArr, 0);
|
|
346
|
+
int texId = texArr[0];
|
|
347
|
+
GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, texId);
|
|
348
|
+
int filter = fillSmoothing != 0 ? GLES20.GL_LINEAR : GLES20.GL_NEAREST;
|
|
349
|
+
GLES20.glTexParameteri(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_MIN_FILTER, filter);
|
|
350
|
+
GLES20.glTexParameteri(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_MAG_FILTER, filter);
|
|
351
|
+
GLES20.glTexParameteri(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_WRAP_S, GLES20.GL_CLAMP_TO_EDGE);
|
|
352
|
+
GLES20.glTexParameteri(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_WRAP_T, GLES20.GL_CLAMP_TO_EDGE);
|
|
353
|
+
|
|
354
|
+
if (fmt == SatelliteKtxDecoder.TF_RGBA32) {
|
|
355
|
+
GLES20.glPixelStorei(GLES20.GL_UNPACK_ALIGNMENT, 4);
|
|
356
|
+
ByteBuffer bb = ByteBuffer.allocateDirect(payload.length).order(ByteOrder.nativeOrder());
|
|
357
|
+
bb.put(payload);
|
|
358
|
+
bb.flip();
|
|
359
|
+
GLES20.glTexImage2D(
|
|
360
|
+
GLES20.GL_TEXTURE_2D,
|
|
361
|
+
0,
|
|
362
|
+
GLES20.GL_RGBA,
|
|
363
|
+
w,
|
|
364
|
+
h,
|
|
365
|
+
0,
|
|
366
|
+
GLES20.GL_RGBA,
|
|
367
|
+
GLES20.GL_UNSIGNED_BYTE,
|
|
368
|
+
bb);
|
|
369
|
+
} else if (fmt == SatelliteKtxDecoder.TF_ASTC_LDR_4x4_RGBA) {
|
|
370
|
+
GLES20.glPixelStorei(GLES20.GL_UNPACK_ALIGNMENT, 1);
|
|
371
|
+
ByteBuffer bb = ByteBuffer.allocateDirect(payload.length).order(ByteOrder.nativeOrder());
|
|
372
|
+
bb.put(payload);
|
|
373
|
+
bb.flip();
|
|
374
|
+
GLES20.glCompressedTexImage2D(
|
|
375
|
+
GLES20.GL_TEXTURE_2D,
|
|
376
|
+
0,
|
|
377
|
+
GL_COMPRESSED_RGBA_ASTC_4x4_KHR,
|
|
378
|
+
w,
|
|
379
|
+
h,
|
|
380
|
+
0,
|
|
381
|
+
payload.length,
|
|
382
|
+
bb);
|
|
383
|
+
} else if (fmt == SatelliteKtxDecoder.TF_ETC2_RGBA) {
|
|
384
|
+
GLES20.glPixelStorei(GLES20.GL_UNPACK_ALIGNMENT, 1);
|
|
385
|
+
ByteBuffer bb = ByteBuffer.allocateDirect(payload.length).order(ByteOrder.nativeOrder());
|
|
386
|
+
bb.put(payload);
|
|
387
|
+
bb.flip();
|
|
388
|
+
GLES20.glCompressedTexImage2D(
|
|
389
|
+
GLES20.GL_TEXTURE_2D,
|
|
390
|
+
0,
|
|
391
|
+
GL_COMPRESSED_RGBA8_ETC2_EAC,
|
|
392
|
+
w,
|
|
393
|
+
h,
|
|
394
|
+
0,
|
|
395
|
+
payload.length,
|
|
396
|
+
bb);
|
|
397
|
+
} else {
|
|
398
|
+
Log.w(TAG, "Unknown basis format ordinal " + fmt + ", skipping texture");
|
|
399
|
+
GLES20.glDeleteTextures(1, texArr, 0);
|
|
400
|
+
GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, 0);
|
|
401
|
+
return null;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, 0);
|
|
405
|
+
|
|
406
|
+
FloatBuffer vb = p.mesh.vertexBuffer;
|
|
407
|
+
vb.position(0);
|
|
408
|
+
IntBuffer ib = p.mesh.indexBuffer;
|
|
409
|
+
ib.position(0);
|
|
410
|
+
|
|
411
|
+
int[] bufs = new int[2];
|
|
412
|
+
GLES20.glGenBuffers(2, bufs, 0);
|
|
413
|
+
int vbo = bufs[0];
|
|
414
|
+
int ibo = bufs[1];
|
|
415
|
+
|
|
416
|
+
GLES20.glBindBuffer(GLES20.GL_ARRAY_BUFFER, vbo);
|
|
417
|
+
GLES20.glBufferData(GLES20.GL_ARRAY_BUFFER, vb.remaining() * 4, vb, GLES20.GL_STATIC_DRAW);
|
|
418
|
+
GLES20.glBindBuffer(GLES20.GL_ELEMENT_ARRAY_BUFFER, ibo);
|
|
419
|
+
GLES20.glBufferData(GLES20.GL_ELEMENT_ARRAY_BUFFER, ib.remaining() * 4, ib, GLES20.GL_STATIC_DRAW);
|
|
420
|
+
GLES20.glBindBuffer(GLES20.GL_ARRAY_BUFFER, 0);
|
|
421
|
+
GLES20.glBindBuffer(GLES20.GL_ELEMENT_ARRAY_BUFFER, 0);
|
|
422
|
+
|
|
423
|
+
return new GpuSlot(
|
|
424
|
+
p.unix,
|
|
425
|
+
texId,
|
|
426
|
+
vbo,
|
|
427
|
+
ibo,
|
|
428
|
+
p.mesh.indexCount,
|
|
429
|
+
p.trueColor,
|
|
430
|
+
p.useColormap,
|
|
431
|
+
p.colormapKind);
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
@Override
|
|
435
|
+
public void render(@NonNull CustomLayerRenderParameters params) {
|
|
436
|
+
if (program == 0) return;
|
|
437
|
+
|
|
438
|
+
synchronized (lock) {
|
|
439
|
+
drainDeletesOnGl();
|
|
440
|
+
|
|
441
|
+
while (!pendingGpuQueue.isEmpty()) {
|
|
442
|
+
PendingGpuUpload pu = pendingGpuQueue.pollFirst();
|
|
443
|
+
GpuSlot uploaded = uploadPendingOnGl(pu);
|
|
444
|
+
if (uploaded != null) {
|
|
445
|
+
putSlotEvictLru(uploaded);
|
|
446
|
+
drainDeletesOnGl();
|
|
447
|
+
if (targetUnix != null && targetUnix.equals(uploaded.unix)) {
|
|
448
|
+
activeUnix = uploaded.unix;
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
applyUserColormapGlIfNeeded();
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
if (!visible || opacity <= 0f) return;
|
|
457
|
+
|
|
458
|
+
GpuSlot draw;
|
|
459
|
+
synchronized (lock) {
|
|
460
|
+
draw = activeUnix != null ? cache.get(activeUnix) : null;
|
|
461
|
+
}
|
|
462
|
+
if (draw == null || draw.indexCount <= 0) return;
|
|
463
|
+
|
|
464
|
+
GLES20.glUseProgram(program);
|
|
465
|
+
|
|
466
|
+
List<Double> matrixList = params.getProjectionMatrix();
|
|
467
|
+
float[] floatMatrix = new float[16];
|
|
468
|
+
for (int i = 0; i < 16; i++) {
|
|
469
|
+
floatMatrix[i] = matrixList.get(i).floatValue();
|
|
470
|
+
}
|
|
471
|
+
double zoom = params.getZoom();
|
|
472
|
+
double scale = Math.pow(2.0, zoom);
|
|
473
|
+
floatMatrix[0] *= scale;
|
|
474
|
+
floatMatrix[1] *= scale;
|
|
475
|
+
floatMatrix[2] *= scale;
|
|
476
|
+
floatMatrix[3] *= scale;
|
|
477
|
+
floatMatrix[4] *= scale;
|
|
478
|
+
floatMatrix[5] *= scale;
|
|
479
|
+
floatMatrix[6] *= scale;
|
|
480
|
+
floatMatrix[7] *= scale;
|
|
481
|
+
floatMatrix[8] *= scale;
|
|
482
|
+
floatMatrix[9] *= scale;
|
|
483
|
+
floatMatrix[10] *= scale;
|
|
484
|
+
floatMatrix[11] *= scale;
|
|
485
|
+
|
|
486
|
+
GLES20.glUniformMatrix4fv(uMatrix, 1, false, floatMatrix, 0);
|
|
487
|
+
|
|
488
|
+
GLES20.glUniform1i(uIsTrueColor, draw.trueColor ? 1 : 0);
|
|
489
|
+
GLES20.glUniform1i(uUseColormap, draw.useColormap ? 1 : 0);
|
|
490
|
+
GLES20.glUniform1f(uOpacity, opacity);
|
|
491
|
+
GLES20.glUniform4f(uUvTransform, 1f, 1f, 0f, 0f);
|
|
492
|
+
|
|
493
|
+
GLES20.glActiveTexture(GLES20.GL_TEXTURE0);
|
|
494
|
+
GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, draw.textureId);
|
|
495
|
+
GLES20.glUniform1i(uTexture, 0);
|
|
496
|
+
|
|
497
|
+
GLES20.glActiveTexture(GLES20.GL_TEXTURE1);
|
|
498
|
+
int cmapId = defaultIrColormapTex;
|
|
499
|
+
if (draw.useColormap) {
|
|
500
|
+
if (userColormapTex != 0) {
|
|
501
|
+
cmapId = userColormapTex;
|
|
502
|
+
} else if ("wv".equals(draw.colormapKind)) {
|
|
503
|
+
cmapId = defaultWvColormapTex;
|
|
504
|
+
} else if ("ir".equals(draw.colormapKind)) {
|
|
505
|
+
cmapId = defaultIrColormapTex;
|
|
506
|
+
}
|
|
507
|
+
}
|
|
508
|
+
GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, cmapId);
|
|
509
|
+
GLES20.glUniform1i(uColormap, 1);
|
|
510
|
+
|
|
511
|
+
GLES20.glEnable(GLES20.GL_BLEND);
|
|
512
|
+
GLES20.glBlendFunc(GLES20.GL_SRC_ALPHA, GLES20.GL_ONE_MINUS_SRC_ALPHA);
|
|
513
|
+
GLES20.glDisable(GLES20.GL_DEPTH_TEST);
|
|
514
|
+
|
|
515
|
+
GLES20.glBindBuffer(GLES20.GL_ARRAY_BUFFER, draw.vbo);
|
|
516
|
+
GLES20.glBindBuffer(GLES20.GL_ELEMENT_ARRAY_BUFFER, draw.ibo);
|
|
517
|
+
|
|
518
|
+
GLES20.glEnableVertexAttribArray(aPos);
|
|
519
|
+
GLES20.glVertexAttribPointer(aPos, 2, GLES20.GL_FLOAT, false, 16, 0);
|
|
520
|
+
|
|
521
|
+
GLES20.glEnableVertexAttribArray(aTexCoord);
|
|
522
|
+
GLES20.glVertexAttribPointer(aTexCoord, 2, GLES20.GL_FLOAT, false, 16, 8);
|
|
523
|
+
|
|
524
|
+
GLES20.glDrawElements(GLES20.GL_TRIANGLES, draw.indexCount, GLES20.GL_UNSIGNED_INT, 0);
|
|
525
|
+
|
|
526
|
+
GLES20.glDisableVertexAttribArray(aPos);
|
|
527
|
+
GLES20.glDisableVertexAttribArray(aTexCoord);
|
|
528
|
+
|
|
529
|
+
GLES20.glBindBuffer(GLES20.GL_ARRAY_BUFFER, 0);
|
|
530
|
+
GLES20.glBindBuffer(GLES20.GL_ELEMENT_ARRAY_BUFFER, 0);
|
|
531
|
+
|
|
532
|
+
GLES20.glActiveTexture(GLES20.GL_TEXTURE1);
|
|
533
|
+
GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, 0);
|
|
534
|
+
GLES20.glActiveTexture(GLES20.GL_TEXTURE0);
|
|
535
|
+
GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, 0);
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
@Override
|
|
539
|
+
public void deinitialize() {
|
|
540
|
+
synchronized (lock) {
|
|
541
|
+
pendingGpuQueue.clear();
|
|
542
|
+
for (GpuSlot s : cache.values()) {
|
|
543
|
+
pendingDelete.add(s);
|
|
544
|
+
}
|
|
545
|
+
cache.clear();
|
|
546
|
+
activeUnix = null;
|
|
547
|
+
targetUnix = null;
|
|
548
|
+
}
|
|
549
|
+
drainDeletesOnGl();
|
|
550
|
+
if (defaultIrColormapTex != 0) {
|
|
551
|
+
GLES20.glDeleteTextures(1, new int[] {defaultIrColormapTex}, 0);
|
|
552
|
+
defaultIrColormapTex = 0;
|
|
553
|
+
}
|
|
554
|
+
if (defaultWvColormapTex != 0) {
|
|
555
|
+
GLES20.glDeleteTextures(1, new int[] {defaultWvColormapTex}, 0);
|
|
556
|
+
defaultWvColormapTex = 0;
|
|
557
|
+
}
|
|
558
|
+
if (userColormapTex != 0) {
|
|
559
|
+
GLES20.glDeleteTextures(1, new int[] {userColormapTex}, 0);
|
|
560
|
+
userColormapTex = 0;
|
|
561
|
+
}
|
|
562
|
+
if (program != 0) {
|
|
563
|
+
GLES20.glDeleteProgram(program);
|
|
564
|
+
program = 0;
|
|
565
|
+
}
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
@Override
|
|
569
|
+
public void contextLost() {
|
|
570
|
+
synchronized (lock) {
|
|
571
|
+
pendingGpuQueue.clear();
|
|
572
|
+
cache.clear();
|
|
573
|
+
program = 0;
|
|
574
|
+
}
|
|
575
|
+
}
|
|
576
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
package com.aguacerowx.reactnative;
|
|
2
|
+
|
|
3
|
+
import androidx.annotation.NonNull;
|
|
4
|
+
import androidx.annotation.Nullable;
|
|
5
|
+
|
|
6
|
+
import com.facebook.react.bridge.ReadableArray;
|
|
7
|
+
import com.facebook.react.uimanager.SimpleViewManager;
|
|
8
|
+
import com.facebook.react.uimanager.ThemedReactContext;
|
|
9
|
+
import com.facebook.react.uimanager.annotations.ReactProp;
|
|
10
|
+
|
|
11
|
+
import java.util.HashMap;
|
|
12
|
+
import java.util.Map;
|
|
13
|
+
|
|
14
|
+
public class SatelliteLayerManager extends SimpleViewManager<SatelliteLayerView> {
|
|
15
|
+
|
|
16
|
+
private static final String REACT_CLASS = "SatelliteLayer";
|
|
17
|
+
private static final int CMD_SYNC = 1;
|
|
18
|
+
private static final int CMD_CLEAR = 2;
|
|
19
|
+
private static final int CMD_ACTIVATE_CACHED = 3;
|
|
20
|
+
private static final int CMD_STYLE = 4;
|
|
21
|
+
|
|
22
|
+
@NonNull
|
|
23
|
+
@Override
|
|
24
|
+
public String getName() {
|
|
25
|
+
return REACT_CLASS;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
@NonNull
|
|
29
|
+
@Override
|
|
30
|
+
protected SatelliteLayerView createViewInstance(@NonNull ThemedReactContext reactContext) {
|
|
31
|
+
return new SatelliteLayerView(reactContext);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
@ReactProp(name = "belowID")
|
|
35
|
+
public void setBelowID(SatelliteLayerView view, @Nullable String belowID) {
|
|
36
|
+
view.setBelowID(belowID);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
@Override
|
|
40
|
+
public Map<String, Integer> getCommandsMap() {
|
|
41
|
+
Map<String, Integer> m = new HashMap<>();
|
|
42
|
+
m.put("syncSatellite", CMD_SYNC);
|
|
43
|
+
m.put("clearSatellite", CMD_CLEAR);
|
|
44
|
+
m.put("activateSatelliteCachedUnix", CMD_ACTIVATE_CACHED);
|
|
45
|
+
m.put("updateSatelliteStyle", CMD_STYLE);
|
|
46
|
+
return m;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
@Override
|
|
50
|
+
public void receiveCommand(
|
|
51
|
+
@NonNull SatelliteLayerView view, int commandId, @Nullable ReadableArray args) {
|
|
52
|
+
switch (commandId) {
|
|
53
|
+
case CMD_CLEAR:
|
|
54
|
+
view.clearSatellite();
|
|
55
|
+
return;
|
|
56
|
+
case CMD_SYNC:
|
|
57
|
+
if (args != null && args.size() > 0) {
|
|
58
|
+
view.syncFromJson(args.getString(0));
|
|
59
|
+
}
|
|
60
|
+
return;
|
|
61
|
+
case CMD_ACTIVATE_CACHED:
|
|
62
|
+
if (args != null && args.size() > 0) {
|
|
63
|
+
try {
|
|
64
|
+
double u = args.getDouble(0);
|
|
65
|
+
view.activateSatelliteCachedUnix((long) u);
|
|
66
|
+
} catch (Exception ignored) {
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
return;
|
|
70
|
+
case CMD_STYLE:
|
|
71
|
+
if (args != null && args.size() > 0) {
|
|
72
|
+
view.updateStyleFromJson(args.getString(0));
|
|
73
|
+
}
|
|
74
|
+
return;
|
|
75
|
+
default:
|
|
76
|
+
break;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|