@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
package/src/GridRenderLayer.js
CHANGED
|
@@ -1,199 +1,111 @@
|
|
|
1
1
|
// packages/react-native/src/GridRenderLayer.js
|
|
2
2
|
|
|
3
|
-
import React, { useRef, useImperativeHandle, forwardRef
|
|
4
|
-
import { UIManager, findNodeHandle,
|
|
3
|
+
import React, { useRef, useImperativeHandle, forwardRef } from 'react';
|
|
4
|
+
import { UIManager, findNodeHandle, StyleSheet } from 'react-native';
|
|
5
5
|
import GridRenderView from './GridRenderLayerNativeComponent';
|
|
6
6
|
|
|
7
|
-
// This must match the module name exported in the native code
|
|
8
7
|
const NATIVE_COMPONENT_NAME = 'GridRenderLayer';
|
|
9
8
|
|
|
10
|
-
if (UIManager.getViewManagerConfig) {
|
|
11
|
-
const allComponents = Object.keys(UIManager).filter(key =>
|
|
12
|
-
!key.startsWith('_') && typeof UIManager[key] !== 'function'
|
|
13
|
-
);
|
|
14
|
-
}
|
|
15
|
-
|
|
16
9
|
export const GridRenderLayer = forwardRef((props, ref) => {
|
|
17
10
|
const nativeRef = useRef(null);
|
|
18
|
-
|
|
19
|
-
useEffect(() => {
|
|
20
|
-
|
|
21
|
-
if (nativeRef.current) {
|
|
22
|
-
const handle = findNodeHandle(nativeRef.current);
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
return () => {
|
|
26
|
-
console.log('🔴 [GridRenderLayer] Component unmounting');
|
|
27
|
-
};
|
|
28
|
-
}, []);
|
|
29
11
|
|
|
30
12
|
const getCommandId = (commandName) => {
|
|
31
13
|
try {
|
|
32
14
|
const config = UIManager.getViewManagerConfig(NATIVE_COMPONENT_NAME);
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
return commandId;
|
|
37
|
-
} catch (error) {
|
|
38
|
-
console.error(`🔴 [GridRenderLayer] Error getting command ${commandName}:`, error);
|
|
15
|
+
return config?.Commands?.[commandName] ?? null;
|
|
16
|
+
} catch {
|
|
39
17
|
return null;
|
|
40
18
|
}
|
|
41
19
|
};
|
|
42
20
|
|
|
43
21
|
useImperativeHandle(ref, () => ({
|
|
44
22
|
updateGeometry: (corners, gridDef) => {
|
|
45
|
-
if (nativeRef.current)
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
UIManager.dispatchViewManagerCommand(
|
|
51
|
-
handle,
|
|
52
|
-
commandId,
|
|
53
|
-
[corners, gridDef]
|
|
54
|
-
);
|
|
55
|
-
} else {
|
|
56
|
-
console.warn('⚠️ [GridRenderLayer] updateGeometry command ID not found');
|
|
57
|
-
}
|
|
58
|
-
} else {
|
|
59
|
-
console.warn('⚠️ [GridRenderLayer] nativeRef not available for updateGeometry');
|
|
60
|
-
}
|
|
23
|
+
if (!nativeRef.current) return;
|
|
24
|
+
const commandId = getCommandId('updateGeometry');
|
|
25
|
+
if (commandId == null) return;
|
|
26
|
+
const handle = findNodeHandle(nativeRef.current);
|
|
27
|
+
UIManager.dispatchViewManagerCommand(handle, commandId, [corners, gridDef]);
|
|
61
28
|
},
|
|
62
29
|
|
|
63
30
|
setVariable: (variableName) => {
|
|
64
|
-
if (nativeRef.current)
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
findNodeHandle(nativeRef.current),
|
|
69
|
-
commandId,
|
|
70
|
-
[variableName]
|
|
71
|
-
);
|
|
72
|
-
}
|
|
73
|
-
}
|
|
31
|
+
if (!nativeRef.current) return;
|
|
32
|
+
const commandId = getCommandId('setVariable');
|
|
33
|
+
if (commandId == null) return;
|
|
34
|
+
UIManager.dispatchViewManagerCommand(findNodeHandle(nativeRef.current), commandId, [variableName]);
|
|
74
35
|
},
|
|
75
36
|
|
|
76
37
|
updateDataTextureFromFile: (filePath, nx, ny, scale, offset, missing, scaleType) => {
|
|
77
|
-
if (nativeRef.current)
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
}
|
|
86
|
-
} else {
|
|
87
|
-
console.warn('⚠️ [GridRenderLayer] nativeRef not available for updateDataTextureFromFile');
|
|
88
|
-
}
|
|
38
|
+
if (!nativeRef.current) return;
|
|
39
|
+
const commandId = getCommandId('updateDataTexture');
|
|
40
|
+
if (commandId == null) return;
|
|
41
|
+
UIManager.dispatchViewManagerCommand(
|
|
42
|
+
findNodeHandle(nativeRef.current),
|
|
43
|
+
commandId,
|
|
44
|
+
[filePath, Number(nx), Number(ny), Number(scale), Number(offset), Number(missing), scaleType || 'linear'],
|
|
45
|
+
);
|
|
89
46
|
},
|
|
90
|
-
|
|
47
|
+
|
|
91
48
|
updateDataTexture: (base64Data, nx, ny, scale, offset, missing, scaleType) => {
|
|
92
|
-
if (nativeRef.current)
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
}
|
|
101
|
-
} else {
|
|
102
|
-
console.warn('⚠️ [GridRenderLayer] nativeRef not available for updateDataTexture');
|
|
103
|
-
}
|
|
49
|
+
if (!nativeRef.current) return;
|
|
50
|
+
const commandId = getCommandId('updateDataTexture');
|
|
51
|
+
if (commandId == null) return;
|
|
52
|
+
UIManager.dispatchViewManagerCommand(
|
|
53
|
+
findNodeHandle(nativeRef.current),
|
|
54
|
+
commandId,
|
|
55
|
+
[base64Data, Number(nx), Number(ny), Number(scale), Number(offset), Number(missing), scaleType || 'linear'],
|
|
56
|
+
);
|
|
104
57
|
},
|
|
105
58
|
|
|
106
59
|
updateColormapTexture: (colormapArray) => {
|
|
107
|
-
if (nativeRef.current)
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
findNodeHandle(nativeRef.current),
|
|
112
|
-
commandId,
|
|
113
|
-
[colormapArray]
|
|
114
|
-
);
|
|
115
|
-
}
|
|
116
|
-
} else {
|
|
117
|
-
console.warn('⚠️ [GridRenderLayer] nativeRef not available for updateColormapTexture');
|
|
118
|
-
}
|
|
60
|
+
if (!nativeRef.current) return;
|
|
61
|
+
const commandId = getCommandId('updateColormapTexture');
|
|
62
|
+
if (commandId == null) return;
|
|
63
|
+
UIManager.dispatchViewManagerCommand(findNodeHandle(nativeRef.current), commandId, [colormapArray]);
|
|
119
64
|
},
|
|
120
65
|
|
|
121
|
-
updateDataParameters: (scale, offset, missing, scaleType) => {
|
|
122
|
-
if (nativeRef.current)
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
}
|
|
131
|
-
}
|
|
66
|
+
updateDataParameters: (scale, offset, missing, scaleType) => {
|
|
67
|
+
if (!nativeRef.current) return;
|
|
68
|
+
const commandId = getCommandId('updateDataParameters');
|
|
69
|
+
if (commandId == null) return;
|
|
70
|
+
UIManager.dispatchViewManagerCommand(
|
|
71
|
+
findNodeHandle(nativeRef.current),
|
|
72
|
+
commandId,
|
|
73
|
+
[Number(scale), Number(offset), Number(missing), Number(scaleType)],
|
|
74
|
+
);
|
|
132
75
|
},
|
|
133
76
|
|
|
134
77
|
setSmoothing: (enabled) => {
|
|
135
|
-
if (nativeRef.current)
|
|
136
|
-
|
|
137
|
-
} else {
|
|
138
|
-
console.warn('⚠️ [GridRenderLayer] nativeRef not available for setSmoothing');
|
|
139
|
-
}
|
|
78
|
+
if (!nativeRef.current) return;
|
|
79
|
+
nativeRef.current.setNativeProps({ smoothing: enabled });
|
|
140
80
|
},
|
|
141
81
|
|
|
142
82
|
clear: () => {
|
|
143
|
-
if (nativeRef.current)
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
findNodeHandle(nativeRef.current),
|
|
148
|
-
commandId,
|
|
149
|
-
[] // No arguments needed
|
|
150
|
-
);
|
|
151
|
-
}
|
|
152
|
-
}
|
|
83
|
+
if (!nativeRef.current) return;
|
|
84
|
+
const commandId = getCommandId('clear');
|
|
85
|
+
if (commandId == null) return;
|
|
86
|
+
UIManager.dispatchViewManagerCommand(findNodeHandle(nativeRef.current), commandId, []);
|
|
153
87
|
},
|
|
154
|
-
|
|
155
|
-
// Primes the GPU cache with all frame data. Android will ignore this.
|
|
88
|
+
|
|
156
89
|
primeGpuCache: (frameInfo) => {
|
|
157
|
-
if (nativeRef.current)
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
findNodeHandle(nativeRef.current),
|
|
162
|
-
commandId,
|
|
163
|
-
[frameInfo]
|
|
164
|
-
);
|
|
165
|
-
}
|
|
166
|
-
}
|
|
90
|
+
if (!nativeRef.current) return;
|
|
91
|
+
const commandId = getCommandId('primeGpuCache');
|
|
92
|
+
if (commandId == null) return;
|
|
93
|
+
UIManager.dispatchViewManagerCommand(findNodeHandle(nativeRef.current), commandId, [frameInfo]);
|
|
167
94
|
},
|
|
168
95
|
|
|
169
|
-
// Sets the active frame from the cache. Android will ignore this.
|
|
170
96
|
setActiveFrame: (cacheKey) => {
|
|
171
|
-
if (nativeRef.current)
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
findNodeHandle(nativeRef.current),
|
|
176
|
-
commandId,
|
|
177
|
-
[cacheKey]
|
|
178
|
-
);
|
|
179
|
-
}
|
|
180
|
-
}
|
|
97
|
+
if (!nativeRef.current) return;
|
|
98
|
+
const commandId = getCommandId('setActiveFrame');
|
|
99
|
+
if (commandId == null) return;
|
|
100
|
+
UIManager.dispatchViewManagerCommand(findNodeHandle(nativeRef.current), commandId, [cacheKey]);
|
|
181
101
|
},
|
|
182
102
|
|
|
183
|
-
// Clears the GPU cache. Android will ignore this.
|
|
184
103
|
clearGpuCache: () => {
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
findNodeHandle(nativeRef.current),
|
|
190
|
-
commandId,
|
|
191
|
-
[]
|
|
192
|
-
);
|
|
193
|
-
}
|
|
194
|
-
}
|
|
104
|
+
if (!nativeRef.current) return;
|
|
105
|
+
const commandId = getCommandId('clearGpuCache');
|
|
106
|
+
if (commandId == null) return;
|
|
107
|
+
UIManager.dispatchViewManagerCommand(findNodeHandle(nativeRef.current), commandId, []);
|
|
195
108
|
},
|
|
196
|
-
|
|
197
109
|
}));
|
|
198
110
|
|
|
199
111
|
return (
|
|
@@ -213,4 +125,4 @@ const styles = StyleSheet.create({
|
|
|
213
125
|
overlay: {
|
|
214
126
|
...StyleSheet.absoluteFillObject,
|
|
215
127
|
},
|
|
216
|
-
});
|
|
128
|
+
});
|
package/src/MapManager.js
CHANGED
|
@@ -8,7 +8,7 @@ import { StyleApplicator } from './StyleApplicator';
|
|
|
8
8
|
import { AguaceroContext } from './AguaceroContext';
|
|
9
9
|
import { mapRegistry } from './MapRegistry';
|
|
10
10
|
|
|
11
|
-
const
|
|
11
|
+
const BASE_STYLE_URL = 'mapbox://styles/aguacerowx/cmfvox8mq004u01qm5nlg7qkt';
|
|
12
12
|
|
|
13
13
|
// --- UTILITIES ---
|
|
14
14
|
function isObject(item) {
|
|
@@ -33,11 +33,60 @@ function deepMerge(target, source) {
|
|
|
33
33
|
return output;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
|
|
36
|
+
/**
|
|
37
|
+
* @param {object} props
|
|
38
|
+
* @param {string} props.mapboxToken
|
|
39
|
+
* @param {object} [props.customStyles]
|
|
40
|
+
* @param {'light'|'dark'} [props.theme]
|
|
41
|
+
* @param {object} [props.mapOptions] - `style` / `styleURL` / `styleUrl` set the map style when no top-level custom style pair is used (mapsgl parity).
|
|
42
|
+
* @param {string} [props.styleURL] - Custom Mapbox style URL (alias: `styleUrl`).
|
|
43
|
+
* @param {string} [props.styleUrl]
|
|
44
|
+
* @param {string} [props.belowID] - Style layer id to insert Aguacero weather **below** (alias: `weatherBeforeLayerId`). With `styleURL`, required for correct stacking; may be set alone to override the default `AML_-_terrain` anchor on the default style.
|
|
45
|
+
* @param {string} [props.weatherBeforeLayerId]
|
|
46
|
+
*/
|
|
47
|
+
export const MapManager = forwardRef(({
|
|
48
|
+
mapboxToken,
|
|
49
|
+
customStyles,
|
|
50
|
+
theme = 'light',
|
|
51
|
+
mapOptions = {},
|
|
52
|
+
styleURL: styleURLProp,
|
|
53
|
+
styleUrl: styleUrlProp,
|
|
54
|
+
belowID: belowIDProp,
|
|
55
|
+
weatherBeforeLayerId: weatherBeforeLayerIdProp,
|
|
56
|
+
children,
|
|
57
|
+
}, ref) => {
|
|
37
58
|
const mapRef = useRef(null);
|
|
38
59
|
const cameraRef = useRef(null);
|
|
39
60
|
const [mapStyle, setMapStyle] = useState(null);
|
|
40
61
|
|
|
62
|
+
const { resolvedStyleURL, weatherBeforeLayerId } = useMemo(() => {
|
|
63
|
+
const mo = mapOptions || {};
|
|
64
|
+
let resolved = BASE_STYLE_URL;
|
|
65
|
+
if (mo.style !== undefined) {
|
|
66
|
+
resolved = mo.style;
|
|
67
|
+
} else if (mo.styleURL !== undefined) {
|
|
68
|
+
resolved = mo.styleURL;
|
|
69
|
+
} else if (mo.styleUrl !== undefined) {
|
|
70
|
+
resolved = mo.styleUrl;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
let anchor = null;
|
|
74
|
+
const customStyleUrl = styleURLProp || styleUrlProp;
|
|
75
|
+
const customBeforeId = belowIDProp || weatherBeforeLayerIdProp;
|
|
76
|
+
if (customStyleUrl) {
|
|
77
|
+
if (customBeforeId && String(customBeforeId).trim()) {
|
|
78
|
+
resolved = customStyleUrl;
|
|
79
|
+
anchor = String(customBeforeId).trim();
|
|
80
|
+
} else if (mo.style === undefined && mo.styleURL === undefined && mo.styleUrl === undefined) {
|
|
81
|
+
resolved = BASE_STYLE_URL;
|
|
82
|
+
}
|
|
83
|
+
} else if (customBeforeId && String(customBeforeId).trim()) {
|
|
84
|
+
anchor = String(customBeforeId).trim();
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
return { resolvedStyleURL: resolved, weatherBeforeLayerId: anchor };
|
|
88
|
+
}, [mapOptions, styleURLProp, styleUrlProp, belowIDProp, weatherBeforeLayerIdProp]);
|
|
89
|
+
|
|
41
90
|
// Expose camera and map methods via ref
|
|
42
91
|
useImperativeHandle(ref, () => ({
|
|
43
92
|
// Camera methods
|
|
@@ -103,7 +152,6 @@ export const MapManager = forwardRef(({ mapboxToken, customStyles, theme = 'ligh
|
|
|
103
152
|
useEffect(() => {
|
|
104
153
|
if (mapRef.current) {
|
|
105
154
|
mapRegistry.setMap(mapRef.current);
|
|
106
|
-
console.log('📍 [MapManager] Registered map with registry');
|
|
107
155
|
}
|
|
108
156
|
}, []);
|
|
109
157
|
|
|
@@ -112,7 +160,10 @@ export const MapManager = forwardRef(({ mapboxToken, customStyles, theme = 'ligh
|
|
|
112
160
|
getCenter: () => {
|
|
113
161
|
return mapRef.current?._currentCenter || [-95.7129, 37.0902];
|
|
114
162
|
},
|
|
115
|
-
|
|
163
|
+
/** @type {string | null} Null with default Aguacero style — use `AML_-_terrain` for weather insert (see WeatherLayerManager). */
|
|
164
|
+
weatherBeforeLayerId,
|
|
165
|
+
resolvedStyleURL,
|
|
166
|
+
}), [weatherBeforeLayerId, resolvedStyleURL]);
|
|
116
167
|
|
|
117
168
|
useEffect(() => {
|
|
118
169
|
let lightTheme = JSON.parse(JSON.stringify(THEME_CONFIGS.light));
|
|
@@ -133,8 +184,6 @@ export const MapManager = forwardRef(({ mapboxToken, customStyles, theme = 'ligh
|
|
|
133
184
|
useEffect(() => {
|
|
134
185
|
if (mapboxToken) {
|
|
135
186
|
Mapbox.setAccessToken(mapboxToken);
|
|
136
|
-
} else {
|
|
137
|
-
console.error("MapManager: A 'mapboxToken' prop is required but was not provided.");
|
|
138
187
|
}
|
|
139
188
|
}, [mapboxToken]);
|
|
140
189
|
|
|
@@ -159,18 +208,21 @@ export const MapManager = forwardRef(({ mapboxToken, customStyles, theme = 'ligh
|
|
|
159
208
|
mapRegistry.notifyCameraChange(center);
|
|
160
209
|
}
|
|
161
210
|
};
|
|
162
|
-
|
|
163
|
-
const BASE_STYLE_URL = 'mapbox://styles/aguacerowx/cmfvox8mq004u01qm5nlg7qkt';
|
|
164
211
|
|
|
212
|
+
const handleMapPress = (payload) => {
|
|
213
|
+
mapRegistry.notifyMapPress(payload);
|
|
214
|
+
};
|
|
215
|
+
|
|
165
216
|
return (
|
|
166
217
|
<View style={styles.container}>
|
|
167
218
|
<AguaceroContext.Provider value={contextValue}>
|
|
168
219
|
<Mapbox.MapView
|
|
169
220
|
ref={mapRef}
|
|
170
221
|
style={styles.map}
|
|
171
|
-
styleURL={
|
|
222
|
+
styleURL={resolvedStyleURL}
|
|
172
223
|
scaleBarEnabled={false}
|
|
173
224
|
onCameraChanged={handleCameraChange}
|
|
225
|
+
onPress={handleMapPress}
|
|
174
226
|
>
|
|
175
227
|
<Mapbox.Camera
|
|
176
228
|
ref={cameraRef}
|
package/src/MapRegistry.js
CHANGED
|
@@ -3,10 +3,11 @@ class MapRegistry {
|
|
|
3
3
|
constructor() {
|
|
4
4
|
this.mapRef = null;
|
|
5
5
|
this.listeners = [];
|
|
6
|
+
/** @type {((payload: unknown) => void)[]} */
|
|
7
|
+
this.pressListeners = [];
|
|
6
8
|
}
|
|
7
9
|
|
|
8
10
|
setMap(mapRef) {
|
|
9
|
-
console.log('📍 [MapRegistry] Map registered:', !!mapRef);
|
|
10
11
|
this.mapRef = mapRef;
|
|
11
12
|
}
|
|
12
13
|
|
|
@@ -16,20 +17,40 @@ class MapRegistry {
|
|
|
16
17
|
|
|
17
18
|
addCameraListener(listener) {
|
|
18
19
|
this.listeners.push(listener);
|
|
19
|
-
console.log('📍 [MapRegistry] Listener added, total:', this.listeners.length);
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
removeCameraListener(listener) {
|
|
23
23
|
const index = this.listeners.indexOf(listener);
|
|
24
24
|
if (index > -1) {
|
|
25
25
|
this.listeners.splice(index, 1);
|
|
26
|
-
console.log('📍 [MapRegistry] Listener removed, total:', this.listeners.length);
|
|
27
26
|
}
|
|
28
27
|
}
|
|
29
28
|
|
|
30
29
|
notifyCameraChange(center) {
|
|
31
30
|
this.listeners.forEach(listener => listener(center));
|
|
32
31
|
}
|
|
32
|
+
|
|
33
|
+
addPressListener(listener) {
|
|
34
|
+
this.pressListeners.push(listener);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
removePressListener(listener) {
|
|
38
|
+
const index = this.pressListeners.indexOf(listener);
|
|
39
|
+
if (index > -1) {
|
|
40
|
+
this.pressListeners.splice(index, 1);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/** @param {unknown} payload - `@rnmapbox/maps` map press payload */
|
|
45
|
+
notifyMapPress(payload) {
|
|
46
|
+
this.pressListeners.forEach((listener) => {
|
|
47
|
+
try {
|
|
48
|
+
listener(payload);
|
|
49
|
+
} catch {
|
|
50
|
+
/* ignore */
|
|
51
|
+
}
|
|
52
|
+
});
|
|
53
|
+
}
|
|
33
54
|
}
|
|
34
55
|
|
|
35
|
-
export const mapRegistry = new MapRegistry();
|
|
56
|
+
export const mapRegistry = new MapRegistry();
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import React, { forwardRef, useImperativeHandle, useRef } from 'react';
|
|
2
|
+
import { StyleSheet, UIManager, findNodeHandle } from 'react-native';
|
|
3
|
+
import NexradRadarLayerNative from './NexradRadarLayerNativeComponent';
|
|
4
|
+
import { nexradDiag, nexradPerfSpan } from './nexrad/nexradDiag';
|
|
5
|
+
|
|
6
|
+
const NATIVE_COMPONENT_NAME = 'NexradRadarLayer';
|
|
7
|
+
|
|
8
|
+
function getCommandId(commandName) {
|
|
9
|
+
try {
|
|
10
|
+
const config = UIManager.getViewManagerConfig(NATIVE_COMPONENT_NAME);
|
|
11
|
+
return config?.Commands?.[commandName] ?? null;
|
|
12
|
+
} catch {
|
|
13
|
+
return null;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export const NexradRadarLayer = forwardRef((props, ref) => {
|
|
18
|
+
const nativeRef = useRef(null);
|
|
19
|
+
|
|
20
|
+
useImperativeHandle(ref, () => ({
|
|
21
|
+
uploadNexradFrame(json) {
|
|
22
|
+
const bridge = nexradPerfSpan('bridge.dispatchViewManagerCommand.uploadNexradFrame');
|
|
23
|
+
const id = getCommandId('uploadNexradFrame');
|
|
24
|
+
const handle = findNodeHandle(nativeRef.current);
|
|
25
|
+
if (id != null && handle != null) {
|
|
26
|
+
UIManager.dispatchViewManagerCommand(handle, id, [json]);
|
|
27
|
+
bridge.end({
|
|
28
|
+
jsonChars: typeof json === 'string' ? json.length : 0,
|
|
29
|
+
ok: true,
|
|
30
|
+
});
|
|
31
|
+
} else {
|
|
32
|
+
bridge.end({
|
|
33
|
+
jsonChars: typeof json === 'string' ? json.length : 0,
|
|
34
|
+
ok: false,
|
|
35
|
+
commandId: id,
|
|
36
|
+
hasHandle: handle != null,
|
|
37
|
+
hasRef: nativeRef.current != null,
|
|
38
|
+
});
|
|
39
|
+
nexradDiag('bridge.uploadNexradFrameBlocked', {
|
|
40
|
+
commandId: id,
|
|
41
|
+
hasHandle: handle != null,
|
|
42
|
+
hasRef: nativeRef.current != null,
|
|
43
|
+
});
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
uploadNexradStyleOnly(json) {
|
|
47
|
+
const bridge = nexradPerfSpan('bridge.dispatchViewManagerCommand.uploadNexradStyleOnly');
|
|
48
|
+
const id = getCommandId('uploadNexradStyleOnly');
|
|
49
|
+
const handle = findNodeHandle(nativeRef.current);
|
|
50
|
+
if (id != null && handle != null) {
|
|
51
|
+
UIManager.dispatchViewManagerCommand(handle, id, [json]);
|
|
52
|
+
bridge.end({
|
|
53
|
+
jsonChars: typeof json === 'string' ? json.length : 0,
|
|
54
|
+
ok: true,
|
|
55
|
+
});
|
|
56
|
+
} else {
|
|
57
|
+
bridge.end({
|
|
58
|
+
jsonChars: typeof json === 'string' ? json.length : 0,
|
|
59
|
+
ok: false,
|
|
60
|
+
commandId: id,
|
|
61
|
+
hasHandle: handle != null,
|
|
62
|
+
});
|
|
63
|
+
nexradDiag('bridge.uploadNexradStyleOnlyBlocked', {
|
|
64
|
+
commandId: id,
|
|
65
|
+
hasHandle: handle != null,
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
clearNexrad() {
|
|
70
|
+
const bridge = nexradPerfSpan('bridge.dispatchViewManagerCommand.clearNexrad');
|
|
71
|
+
const id = getCommandId('clearNexrad');
|
|
72
|
+
const handle = findNodeHandle(nativeRef.current);
|
|
73
|
+
if (id != null && handle != null) {
|
|
74
|
+
UIManager.dispatchViewManagerCommand(handle, id, []);
|
|
75
|
+
bridge.end({ ok: true });
|
|
76
|
+
} else {
|
|
77
|
+
bridge.end({ ok: false, commandId: id, hasHandle: handle != null });
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
activateNexradCachedFrame(nativeGpuCacheKey) {
|
|
81
|
+
const bridge = nexradPerfSpan('bridge.dispatchViewManagerCommand.activateNexradCachedFrame');
|
|
82
|
+
const id = getCommandId('activateNexradCachedFrame');
|
|
83
|
+
const handle = findNodeHandle(nativeRef.current);
|
|
84
|
+
if (id != null && handle != null && typeof nativeGpuCacheKey === 'string') {
|
|
85
|
+
UIManager.dispatchViewManagerCommand(handle, id, [nativeGpuCacheKey]);
|
|
86
|
+
bridge.end({
|
|
87
|
+
keyLen: nativeGpuCacheKey.length,
|
|
88
|
+
ok: true,
|
|
89
|
+
});
|
|
90
|
+
} else {
|
|
91
|
+
bridge.end({
|
|
92
|
+
keyLen: typeof nativeGpuCacheKey === 'string' ? nativeGpuCacheKey.length : 0,
|
|
93
|
+
ok: false,
|
|
94
|
+
commandId: id,
|
|
95
|
+
hasHandle: handle != null,
|
|
96
|
+
});
|
|
97
|
+
nexradDiag('bridge.activateNexradCachedFrameBlocked', {
|
|
98
|
+
commandId: id,
|
|
99
|
+
hasHandle: handle != null,
|
|
100
|
+
keyType: typeof nativeGpuCacheKey,
|
|
101
|
+
});
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
}));
|
|
105
|
+
|
|
106
|
+
return (
|
|
107
|
+
<NexradRadarLayerNative
|
|
108
|
+
ref={nativeRef}
|
|
109
|
+
belowID={props.belowID}
|
|
110
|
+
style={styles.overlay}
|
|
111
|
+
pointerEvents="none"
|
|
112
|
+
collapsable={false}
|
|
113
|
+
/>
|
|
114
|
+
);
|
|
115
|
+
});
|
|
116
|
+
|
|
117
|
+
const styles = StyleSheet.create({
|
|
118
|
+
overlay: {
|
|
119
|
+
...StyleSheet.absoluteFillObject,
|
|
120
|
+
},
|
|
121
|
+
});
|
|
122
|
+
|
|
123
|
+
NexradRadarLayer.displayName = 'NexradRadarLayer';
|
|
124
|
+
|
|
125
|
+
export default NexradRadarLayer;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React, { forwardRef, useImperativeHandle } from 'react';
|
|
2
|
+
|
|
3
|
+
/** NEXRAD native rendering is Android-only; iOS is a no-op stub. */
|
|
4
|
+
export const NexradRadarLayer = forwardRef((props, ref) => {
|
|
5
|
+
useImperativeHandle(ref, () => ({
|
|
6
|
+
uploadNexradFrame() {},
|
|
7
|
+
uploadNexradStyleOnly() {},
|
|
8
|
+
clearNexrad() {},
|
|
9
|
+
}));
|
|
10
|
+
return null;
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
NexradRadarLayer.displayName = 'NexradRadarLayer';
|
|
14
|
+
|
|
15
|
+
export default NexradRadarLayer;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { ViewProps } from 'react-native/Libraries/Components/View/ViewPropTypes';
|
|
2
|
+
import type { HostComponent } from 'react-native';
|
|
3
|
+
import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
|
|
4
|
+
|
|
5
|
+
export interface NativeProps extends ViewProps {
|
|
6
|
+
belowID?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export default codegenNativeComponent<NativeProps>(
|
|
10
|
+
'NexradRadarLayer',
|
|
11
|
+
) as HostComponent<NativeProps>;
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Mapbox GL circle markers for NEXRAD site picking on React Native (parity with mapsgl {@link NexradSitesOverlay}).
|
|
3
|
+
* Must render as a descendant of {@link Mapbox.MapView}.
|
|
4
|
+
*/
|
|
5
|
+
import React from 'react';
|
|
6
|
+
import Mapbox from '@rnmapbox/maps';
|
|
7
|
+
import nexradSitesPayload from './nexrad/nexradSitesUs.json';
|
|
8
|
+
|
|
9
|
+
const SOURCE_ID = 'aguacero-nexrad-sites-src';
|
|
10
|
+
const CIRCLE_LAYER_ID = 'aguacero-nexrad-sites-circles';
|
|
11
|
+
|
|
12
|
+
function buildNexradSitesFeatureCollection() {
|
|
13
|
+
const raw = nexradSitesPayload?.sites;
|
|
14
|
+
if (!Array.isArray(raw)) {
|
|
15
|
+
return { type: 'FeatureCollection', features: [] };
|
|
16
|
+
}
|
|
17
|
+
const features = [];
|
|
18
|
+
for (const item of raw) {
|
|
19
|
+
if (!item) continue;
|
|
20
|
+
const lon = Number(item.lon ?? item.lng ?? item.longitude);
|
|
21
|
+
const lat = Number(item.lat ?? item.latitude);
|
|
22
|
+
const id = String(item.id ?? item.station ?? '').toUpperCase();
|
|
23
|
+
if (!id || !Number.isFinite(lat) || !Number.isFinite(lon)) continue;
|
|
24
|
+
features.push({
|
|
25
|
+
type: 'Feature',
|
|
26
|
+
geometry: { type: 'Point', coordinates: [lon, lat] },
|
|
27
|
+
properties: { id, name: id },
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
return { type: 'FeatureCollection', features };
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
const NEXRAD_SITES_FEATURE_COLLECTION = buildNexradSitesFeatureCollection();
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @param {object} props
|
|
37
|
+
* @param {boolean} props.visible
|
|
38
|
+
* @param {(siteId: string) => void} [props.onSelectSite]
|
|
39
|
+
* @param {string} [props.belowLayerID] - Optional style layer id to insert under (e.g. weather anchor).
|
|
40
|
+
*/
|
|
41
|
+
export function NexradSitesMapLayer({ visible, onSelectSite, belowLayerID }) {
|
|
42
|
+
const handlePress = (e) => {
|
|
43
|
+
const list = e?.features;
|
|
44
|
+
const f = Array.isArray(list) && list.length > 0 ? list[0] : null;
|
|
45
|
+
const id = f?.properties?.id ?? f?.properties?.name;
|
|
46
|
+
if (id && typeof onSelectSite === 'function') {
|
|
47
|
+
onSelectSite(String(id));
|
|
48
|
+
}
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
if (!visible || !NEXRAD_SITES_FEATURE_COLLECTION.features.length) {
|
|
52
|
+
return null;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
return (
|
|
56
|
+
<Mapbox.ShapeSource
|
|
57
|
+
id={SOURCE_ID}
|
|
58
|
+
shape={NEXRAD_SITES_FEATURE_COLLECTION}
|
|
59
|
+
onPress={handlePress}
|
|
60
|
+
hitbox={{ width: 44, height: 44 }}
|
|
61
|
+
>
|
|
62
|
+
<Mapbox.CircleLayer
|
|
63
|
+
id={CIRCLE_LAYER_ID}
|
|
64
|
+
belowLayerID={belowLayerID}
|
|
65
|
+
style={{
|
|
66
|
+
circleRadius: 5,
|
|
67
|
+
circleColor: '#3b82f6',
|
|
68
|
+
circleStrokeWidth: 1,
|
|
69
|
+
circleStrokeColor: '#ffffff',
|
|
70
|
+
circleOpacity: 0.95,
|
|
71
|
+
}}
|
|
72
|
+
/>
|
|
73
|
+
</Mapbox.ShapeSource>
|
|
74
|
+
);
|
|
75
|
+
}
|