@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
|
@@ -69,20 +69,15 @@ public class WeatherFrameProcessorModule extends ReactContextBaseJavaModule {
|
|
|
69
69
|
.readTimeout(30, TimeUnit.SECONDS)
|
|
70
70
|
.writeTimeout(15, TimeUnit.SECONDS)
|
|
71
71
|
.build();
|
|
72
|
-
|
|
73
|
-
Log.d(TAG, "[FrameProcessor] Initialized | MAX_CONCURRENT=" + MAX_CONCURRENT);
|
|
74
72
|
}
|
|
75
73
|
|
|
76
74
|
@ReactMethod
|
|
77
75
|
public void cancelAllFrames() {
|
|
78
|
-
|
|
76
|
+
currentRunToken.incrementAndGet();
|
|
79
77
|
|
|
80
|
-
// Hard-cancel every tracked OkHttp call
|
|
81
|
-
int cancelledCount = 0;
|
|
82
78
|
for (Call call : activeCalls) {
|
|
83
79
|
if (!call.isCanceled()) {
|
|
84
80
|
call.cancel();
|
|
85
|
-
cancelledCount++;
|
|
86
81
|
}
|
|
87
82
|
}
|
|
88
83
|
activeCalls.clear();
|
|
@@ -90,10 +85,6 @@ public class WeatherFrameProcessorModule extends ReactContextBaseJavaModule {
|
|
|
90
85
|
// Release all semaphore permits to unblock the Executor queue
|
|
91
86
|
semaphore.drainPermits();
|
|
92
87
|
semaphore.release(MAX_CONCURRENT);
|
|
93
|
-
|
|
94
|
-
Log.d(TAG, "[FrameProcessor] cancelAllFrames — token: " + newToken
|
|
95
|
-
+ " | hard-cancelled " + cancelledCount + " in-flight calls"
|
|
96
|
-
+ " | semaphore reset to " + MAX_CONCURRENT);
|
|
97
88
|
}
|
|
98
89
|
|
|
99
90
|
@NonNull
|
|
@@ -105,7 +96,6 @@ public class WeatherFrameProcessorModule extends ReactContextBaseJavaModule {
|
|
|
105
96
|
@ReactMethod
|
|
106
97
|
public void processFrame(ReadableMap options, Promise promise) {
|
|
107
98
|
final int taskToken = currentRunToken.get();
|
|
108
|
-
final long tTotal0 = System.nanoTime();
|
|
109
99
|
|
|
110
100
|
final String urlString = options.getString("url");
|
|
111
101
|
final String apiKey = options.getString("apiKey");
|
|
@@ -131,7 +121,6 @@ public class WeatherFrameProcessorModule extends ReactContextBaseJavaModule {
|
|
|
131
121
|
if (bundleId != null) requestBuilder.header("x-app-identifier", bundleId);
|
|
132
122
|
Request request = requestBuilder.build();
|
|
133
123
|
|
|
134
|
-
final long tNet0 = System.nanoTime();
|
|
135
124
|
Call call = httpClient.newCall(request);
|
|
136
125
|
activeCalls.add(call);
|
|
137
126
|
|
|
@@ -163,9 +152,6 @@ public class WeatherFrameProcessorModule extends ReactContextBaseJavaModule {
|
|
|
163
152
|
|
|
164
153
|
FileOutputStream fos = null;
|
|
165
154
|
try {
|
|
166
|
-
long tNet1 = System.nanoTime();
|
|
167
|
-
Log.d(TAG, "[FrameProcessor] Network: " + ((tNet1 - tNet0) / 1_000_000) + " ms");
|
|
168
|
-
|
|
169
155
|
if (!response.isSuccessful()) {
|
|
170
156
|
promise.reject("HTTP_ERROR", "HTTP " + response.code());
|
|
171
157
|
return;
|
|
@@ -182,8 +168,6 @@ public class WeatherFrameProcessorModule extends ReactContextBaseJavaModule {
|
|
|
182
168
|
if (currentRunToken.get() != taskToken) return;
|
|
183
169
|
|
|
184
170
|
// JSON parse
|
|
185
|
-
long tJson0 = System.nanoTime();
|
|
186
|
-
// This line is the memory killer. We convert bytes -> String -> JSONObject.
|
|
187
171
|
String jsonString = new String(bodyBytes);
|
|
188
172
|
bodyBytes = null; // FIX 4: Nullify immediately to help GC
|
|
189
173
|
|
|
@@ -199,25 +183,15 @@ public class WeatherFrameProcessorModule extends ReactContextBaseJavaModule {
|
|
|
199
183
|
JSONObject encoding = jsonResponse.getJSONObject("encoding");
|
|
200
184
|
|
|
201
185
|
// Don't need the huge JSON object anymore
|
|
202
|
-
jsonResponse = null;
|
|
203
|
-
|
|
204
|
-
long tJson1 = System.nanoTime();
|
|
205
|
-
Log.d(TAG, "[FrameProcessor] JSON parse: " + ((tJson1 - tJson0) / 1_000_000) + " ms");
|
|
206
|
-
|
|
207
|
-
if (currentRunToken.get() != taskToken) return;
|
|
186
|
+
jsonResponse = null;
|
|
208
187
|
|
|
209
188
|
// Base64 decode
|
|
210
|
-
long tB640 = System.nanoTime();
|
|
211
189
|
byte[] compressedData = Base64.decode(b64CompressedData, Base64.DEFAULT);
|
|
212
190
|
b64CompressedData = null; // FIX 4: Nullify immediately
|
|
213
|
-
|
|
214
|
-
long tB641 = System.nanoTime();
|
|
215
|
-
Log.d(TAG, "[FrameProcessor] Base64 decode: " + ((tB641 - tB640) / 1_000_000) + " ms, size: " + compressedData.length);
|
|
216
191
|
|
|
217
192
|
if (currentRunToken.get() != taskToken) return;
|
|
218
193
|
|
|
219
194
|
// Disk write
|
|
220
|
-
long tDisk0 = System.nanoTime();
|
|
221
195
|
File cacheDir = reactContext.getCacheDir();
|
|
222
196
|
// Use a unique name based on hash
|
|
223
197
|
String fileName = "frame_" + urlString.hashCode() + ".zst";
|
|
@@ -226,9 +200,6 @@ public class WeatherFrameProcessorModule extends ReactContextBaseJavaModule {
|
|
|
226
200
|
fos = new FileOutputStream(dataFile);
|
|
227
201
|
fos.write(compressedData);
|
|
228
202
|
fos.flush();
|
|
229
|
-
|
|
230
|
-
long tDisk1 = System.nanoTime();
|
|
231
|
-
Log.d(TAG, "[FrameProcessor] Disk write: " + ((tDisk1 - tDisk0) / 1_000_000) + " ms");
|
|
232
203
|
|
|
233
204
|
WritableMap responseMap = Arguments.createMap();
|
|
234
205
|
responseMap.putString("filePath", dataFile.getAbsolutePath());
|
|
@@ -239,9 +210,6 @@ public class WeatherFrameProcessorModule extends ReactContextBaseJavaModule {
|
|
|
239
210
|
responseMap.putString("scaleType", encoding.getString("scale_type"));
|
|
240
211
|
}
|
|
241
212
|
|
|
242
|
-
long tTotal1 = System.nanoTime();
|
|
243
|
-
Log.d(TAG, "[FrameProcessor] TOTAL processFrame: " + ((tTotal1 - tTotal0) / 1_000_000) + " ms");
|
|
244
|
-
|
|
245
213
|
promise.resolve(responseMap);
|
|
246
214
|
|
|
247
215
|
} catch (Exception e) {
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
precision highp float;
|
|
2
|
+
varying highp vec2 v_uv;
|
|
3
|
+
uniform sampler2D u_gate_texture;
|
|
4
|
+
uniform sampler2D u_lut_texture;
|
|
5
|
+
uniform vec2 u_texture_size;
|
|
6
|
+
uniform vec2 u_value_scale_offset;
|
|
7
|
+
uniform vec2 u_lut_value_range;
|
|
8
|
+
uniform float u_discrete_integer_lut;
|
|
9
|
+
uniform float u_opacity;
|
|
10
|
+
uniform float u_gate_smooth_polar;
|
|
11
|
+
|
|
12
|
+
float decodeInt16(vec2 encoded) {
|
|
13
|
+
float hi = floor(encoded.x * 255.0 + 0.5);
|
|
14
|
+
float lo = floor(encoded.y * 255.0 + 0.5);
|
|
15
|
+
float raw = lo + hi * 256.0;
|
|
16
|
+
if (raw >= 32768.0) raw -= 65536.0;
|
|
17
|
+
return raw;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
float sampleGateRawBilinear(vec2 gxy) {
|
|
21
|
+
vec2 sz = u_texture_size;
|
|
22
|
+
float x_px = gxy.x * sz.x - 0.5;
|
|
23
|
+
float y_px = gxy.y * sz.y - 0.5;
|
|
24
|
+
vec2 i0 = floor(vec2(x_px, y_px));
|
|
25
|
+
vec2 f = vec2(x_px, y_px) - i0;
|
|
26
|
+
vec2 i1 = i0 + 1.0;
|
|
27
|
+
i0.x = clamp(i0.x, 0.0, sz.x - 1.0);
|
|
28
|
+
i1.x = clamp(i1.x, 0.0, sz.x - 1.0);
|
|
29
|
+
i0.y = mod(i0.y + sz.y, sz.y);
|
|
30
|
+
i1.y = mod(i1.y + sz.y, sz.y);
|
|
31
|
+
float w00 = (1.0 - f.x) * (1.0 - f.y);
|
|
32
|
+
float w10 = f.x * (1.0 - f.y);
|
|
33
|
+
float w01 = (1.0 - f.x) * f.y;
|
|
34
|
+
float w11 = f.x * f.y;
|
|
35
|
+
vec2 invSz = 1.0 / sz;
|
|
36
|
+
vec4 p00 = texture2D(u_gate_texture, (vec2(i0.x, i0.y) + 0.5) * invSz);
|
|
37
|
+
vec4 p10 = texture2D(u_gate_texture, (vec2(i1.x, i0.y) + 0.5) * invSz);
|
|
38
|
+
vec4 p01 = texture2D(u_gate_texture, (vec2(i0.x, i1.y) + 0.5) * invSz);
|
|
39
|
+
vec4 p11 = texture2D(u_gate_texture, (vec2(i1.x, i1.y) + 0.5) * invSz);
|
|
40
|
+
float r00 = decodeInt16(vec2(p00.r, p00.a));
|
|
41
|
+
float r10 = decodeInt16(vec2(p10.r, p10.a));
|
|
42
|
+
float r01 = decodeInt16(vec2(p01.r, p01.a));
|
|
43
|
+
float r11 = decodeInt16(vec2(p11.r, p11.a));
|
|
44
|
+
float acc = 0.0;
|
|
45
|
+
float wsum = 0.0;
|
|
46
|
+
if (r00 > -32768.0) { acc += r00 * w00; wsum += w00; }
|
|
47
|
+
if (r10 > -32768.0) { acc += r10 * w10; wsum += w10; }
|
|
48
|
+
if (r01 > -32768.0) { acc += r01 * w01; wsum += w01; }
|
|
49
|
+
if (r11 > -32768.0) { acc += r11 * w11; wsum += w11; }
|
|
50
|
+
if (wsum < 1e-6) return -32768.0;
|
|
51
|
+
return acc / wsum;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
float sampleGateRawNearest(vec2 gxy) {
|
|
55
|
+
vec2 sz = u_texture_size;
|
|
56
|
+
vec2 px = gxy * sz;
|
|
57
|
+
vec2 i = floor(px);
|
|
58
|
+
i.x = clamp(i.x, 0.0, sz.x - 1.0);
|
|
59
|
+
i.y = mod(i.y + sz.y, sz.y);
|
|
60
|
+
vec4 p = texture2D(u_gate_texture, (i + 0.5) / sz);
|
|
61
|
+
return decodeInt16(vec2(p.r, p.a));
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
void main() {
|
|
65
|
+
float raw;
|
|
66
|
+
if (u_gate_smooth_polar < 0.5) {
|
|
67
|
+
raw = sampleGateRawNearest(v_uv);
|
|
68
|
+
} else {
|
|
69
|
+
raw = sampleGateRawBilinear(v_uv);
|
|
70
|
+
}
|
|
71
|
+
if (raw <= -32768.0) discard;
|
|
72
|
+
|
|
73
|
+
float physical = raw * u_value_scale_offset.x + u_value_scale_offset.y;
|
|
74
|
+
if (physical < u_lut_value_range.x || physical > u_lut_value_range.y) discard;
|
|
75
|
+
|
|
76
|
+
float lutT;
|
|
77
|
+
if (u_discrete_integer_lut > 0.5) {
|
|
78
|
+
float n = u_lut_value_range.y - u_lut_value_range.x + 1.0;
|
|
79
|
+
lutT = (physical - u_lut_value_range.x + 0.5) / max(n, 0.0001);
|
|
80
|
+
} else {
|
|
81
|
+
lutT = (physical - u_lut_value_range.x) / max(u_lut_value_range.y - u_lut_value_range.x, 0.0001);
|
|
82
|
+
}
|
|
83
|
+
lutT = clamp(lutT, 0.0, 1.0);
|
|
84
|
+
vec4 color = texture2D(u_lut_texture, vec2(lutT, 0.5));
|
|
85
|
+
if (color.a <= 0.001) discard;
|
|
86
|
+
gl_FragColor = vec4(color.rgb, color.a * u_opacity);
|
|
87
|
+
}
|
package/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export { MapManager } from './src/MapManager';
|
|
2
2
|
export { WeatherLayerManager } from './src/WeatherLayerManager';
|
|
3
|
-
export { default as GridRenderLayer } from './src/GridRenderLayerNativeComponent';
|
|
3
|
+
export { default as GridRenderLayer } from './src/GridRenderLayerNativeComponent';
|
|
4
|
+
export { AGUACERO_NEXRAD_MAP_LAYER_ID, AGUACERO_SATELLITE_MAP_LAYER_ID } from './src/nws/nwsAndroidConstants';
|
|
@@ -11,31 +11,21 @@ package com.facebook.react.viewmanagers;
|
|
|
11
11
|
|
|
12
12
|
import android.view.View;
|
|
13
13
|
import androidx.annotation.Nullable;
|
|
14
|
-
import com.facebook.react.bridge.ReadableArray;
|
|
15
14
|
import com.facebook.react.uimanager.BaseViewManager;
|
|
16
15
|
import com.facebook.react.uimanager.BaseViewManagerDelegate;
|
|
17
16
|
import com.facebook.react.uimanager.LayoutShadowNode;
|
|
18
17
|
|
|
19
18
|
@SuppressWarnings("deprecation")
|
|
20
|
-
public class
|
|
21
|
-
public
|
|
19
|
+
public class NexradRadarLayerManagerDelegate<T extends View, U extends BaseViewManager<T, ? extends LayoutShadowNode> & NexradRadarLayerManagerInterface<T>> extends BaseViewManagerDelegate<T, U> {
|
|
20
|
+
public NexradRadarLayerManagerDelegate(U viewManager) {
|
|
22
21
|
super(viewManager);
|
|
23
22
|
}
|
|
24
23
|
@Override
|
|
25
24
|
public void setProperty(T view, String propName, @Nullable Object value) {
|
|
26
25
|
switch (propName) {
|
|
27
|
-
case "opacity":
|
|
28
|
-
mViewManager.setOpacity(view, value == null ? 1f : ((Double) value).floatValue());
|
|
29
|
-
break;
|
|
30
|
-
case "dataRange":
|
|
31
|
-
mViewManager.setDataRange(view, (ReadableArray) value);
|
|
32
|
-
break;
|
|
33
26
|
case "belowID":
|
|
34
27
|
mViewManager.setBelowID(view, value == null ? null : (String) value);
|
|
35
28
|
break;
|
|
36
|
-
case "smoothing":
|
|
37
|
-
mViewManager.setSmoothing(view, value == null ? true : (boolean) value);
|
|
38
|
-
break;
|
|
39
29
|
default:
|
|
40
30
|
super.setProperty(view, propName, value);
|
|
41
31
|
}
|
|
@@ -11,12 +11,8 @@ package com.facebook.react.viewmanagers;
|
|
|
11
11
|
|
|
12
12
|
import android.view.View;
|
|
13
13
|
import androidx.annotation.Nullable;
|
|
14
|
-
import com.facebook.react.bridge.ReadableArray;
|
|
15
14
|
import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface;
|
|
16
15
|
|
|
17
|
-
public interface
|
|
18
|
-
void setOpacity(T view, float value);
|
|
19
|
-
void setDataRange(T view, @Nullable ReadableArray value);
|
|
16
|
+
public interface NexradRadarLayerManagerInterface<T extends View> extends ViewManagerWithGeneratedInterface {
|
|
20
17
|
void setBelowID(T view, @Nullable String value);
|
|
21
|
-
void setSmoothing(T view, boolean value);
|
|
22
18
|
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
|
|
3
|
+
*
|
|
4
|
+
* Do not edit this file as changes may cause incorrect behavior and will be lost
|
|
5
|
+
* once the code is regenerated.
|
|
6
|
+
*
|
|
7
|
+
* @generated by codegen project: GeneratePropsJavaDelegate.js
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
package com.facebook.react.viewmanagers;
|
|
11
|
+
|
|
12
|
+
import android.view.View;
|
|
13
|
+
import androidx.annotation.Nullable;
|
|
14
|
+
import com.facebook.react.uimanager.BaseViewManager;
|
|
15
|
+
import com.facebook.react.uimanager.BaseViewManagerDelegate;
|
|
16
|
+
import com.facebook.react.uimanager.LayoutShadowNode;
|
|
17
|
+
|
|
18
|
+
@SuppressWarnings("deprecation")
|
|
19
|
+
public class SatelliteLayerManagerDelegate<T extends View, U extends BaseViewManager<T, ? extends LayoutShadowNode> & SatelliteLayerManagerInterface<T>> extends BaseViewManagerDelegate<T, U> {
|
|
20
|
+
public SatelliteLayerManagerDelegate(U viewManager) {
|
|
21
|
+
super(viewManager);
|
|
22
|
+
}
|
|
23
|
+
@Override
|
|
24
|
+
public void setProperty(T view, String propName, @Nullable Object value) {
|
|
25
|
+
switch (propName) {
|
|
26
|
+
case "belowID":
|
|
27
|
+
mViewManager.setBelowID(view, value == null ? null : (String) value);
|
|
28
|
+
break;
|
|
29
|
+
default:
|
|
30
|
+
super.setProperty(view, propName, value);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
|
|
3
|
+
*
|
|
4
|
+
* Do not edit this file as changes may cause incorrect behavior and will be lost
|
|
5
|
+
* once the code is regenerated.
|
|
6
|
+
*
|
|
7
|
+
* @generated by codegen project: GeneratePropsJavaInterface.js
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
package com.facebook.react.viewmanagers;
|
|
11
|
+
|
|
12
|
+
import android.view.View;
|
|
13
|
+
import androidx.annotation.Nullable;
|
|
14
|
+
import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface;
|
|
15
|
+
|
|
16
|
+
public interface SatelliteLayerManagerInterface<T extends View> extends ViewManagerWithGeneratedInterface {
|
|
17
|
+
void setBelowID(T view, @Nullable String value);
|
|
18
|
+
}
|
|
@@ -17,6 +17,8 @@ namespace facebook::react {
|
|
|
17
17
|
void AguaceroWxReactNativeSpec_registerComponentDescriptorsFromCodegen(
|
|
18
18
|
std::shared_ptr<const ComponentDescriptorProviderRegistry> registry) {
|
|
19
19
|
registry->add(concreteComponentDescriptorProvider<GridRenderLayerComponentDescriptor>());
|
|
20
|
+
registry->add(concreteComponentDescriptorProvider<NexradRadarLayerComponentDescriptor>());
|
|
21
|
+
registry->add(concreteComponentDescriptorProvider<SatelliteLayerComponentDescriptor>());
|
|
20
22
|
}
|
|
21
23
|
|
|
22
24
|
} // namespace facebook::react
|
|
@@ -17,6 +17,8 @@
|
|
|
17
17
|
namespace facebook::react {
|
|
18
18
|
|
|
19
19
|
using GridRenderLayerComponentDescriptor = ConcreteComponentDescriptor<GridRenderLayerShadowNode>;
|
|
20
|
+
using NexradRadarLayerComponentDescriptor = ConcreteComponentDescriptor<NexradRadarLayerShadowNode>;
|
|
21
|
+
using SatelliteLayerComponentDescriptor = ConcreteComponentDescriptor<SatelliteLayerShadowNode>;
|
|
20
22
|
|
|
21
23
|
void AguaceroWxReactNativeSpec_registerComponentDescriptorsFromCodegen(
|
|
22
24
|
std::shared_ptr<const ComponentDescriptorProviderRegistry> registry);
|
|
@@ -19,5 +19,19 @@ class GridRenderLayerEventEmitter : public ViewEventEmitter {
|
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
|
|
22
|
+
};
|
|
23
|
+
class NexradRadarLayerEventEmitter : public ViewEventEmitter {
|
|
24
|
+
public:
|
|
25
|
+
using ViewEventEmitter::ViewEventEmitter;
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
};
|
|
30
|
+
class SatelliteLayerEventEmitter : public ViewEventEmitter {
|
|
31
|
+
public:
|
|
32
|
+
using ViewEventEmitter::ViewEventEmitter;
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
22
36
|
};
|
|
23
37
|
} // namespace facebook::react
|
|
@@ -58,5 +58,63 @@ folly::dynamic GridRenderLayerProps::getDiffProps(
|
|
|
58
58
|
return result;
|
|
59
59
|
}
|
|
60
60
|
#endif
|
|
61
|
+
NexradRadarLayerProps::NexradRadarLayerProps(
|
|
62
|
+
const PropsParserContext &context,
|
|
63
|
+
const NexradRadarLayerProps &sourceProps,
|
|
64
|
+
const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
|
|
65
|
+
|
|
66
|
+
belowID(convertRawProp(context, rawProps, "belowID", sourceProps.belowID, {})) {}
|
|
67
|
+
|
|
68
|
+
#ifdef RN_SERIALIZABLE_STATE
|
|
69
|
+
ComponentName NexradRadarLayerProps::getDiffPropsImplementationTarget() const {
|
|
70
|
+
return "NexradRadarLayer";
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
folly::dynamic NexradRadarLayerProps::getDiffProps(
|
|
74
|
+
const Props* prevProps) const {
|
|
75
|
+
static const auto defaultProps = NexradRadarLayerProps();
|
|
76
|
+
const NexradRadarLayerProps* oldProps = prevProps == nullptr
|
|
77
|
+
? &defaultProps
|
|
78
|
+
: static_cast<const NexradRadarLayerProps*>(prevProps);
|
|
79
|
+
if (this == oldProps) {
|
|
80
|
+
return folly::dynamic::object();
|
|
81
|
+
}
|
|
82
|
+
folly::dynamic result = HostPlatformViewProps::getDiffProps(prevProps);
|
|
83
|
+
|
|
84
|
+
if (belowID != oldProps->belowID) {
|
|
85
|
+
result["belowID"] = belowID;
|
|
86
|
+
}
|
|
87
|
+
return result;
|
|
88
|
+
}
|
|
89
|
+
#endif
|
|
90
|
+
SatelliteLayerProps::SatelliteLayerProps(
|
|
91
|
+
const PropsParserContext &context,
|
|
92
|
+
const SatelliteLayerProps &sourceProps,
|
|
93
|
+
const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
|
|
94
|
+
|
|
95
|
+
belowID(convertRawProp(context, rawProps, "belowID", sourceProps.belowID, {})) {}
|
|
96
|
+
|
|
97
|
+
#ifdef RN_SERIALIZABLE_STATE
|
|
98
|
+
ComponentName SatelliteLayerProps::getDiffPropsImplementationTarget() const {
|
|
99
|
+
return "SatelliteLayer";
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
folly::dynamic SatelliteLayerProps::getDiffProps(
|
|
103
|
+
const Props* prevProps) const {
|
|
104
|
+
static const auto defaultProps = SatelliteLayerProps();
|
|
105
|
+
const SatelliteLayerProps* oldProps = prevProps == nullptr
|
|
106
|
+
? &defaultProps
|
|
107
|
+
: static_cast<const SatelliteLayerProps*>(prevProps);
|
|
108
|
+
if (this == oldProps) {
|
|
109
|
+
return folly::dynamic::object();
|
|
110
|
+
}
|
|
111
|
+
folly::dynamic result = HostPlatformViewProps::getDiffProps(prevProps);
|
|
112
|
+
|
|
113
|
+
if (belowID != oldProps->belowID) {
|
|
114
|
+
result["belowID"] = belowID;
|
|
115
|
+
}
|
|
116
|
+
return result;
|
|
117
|
+
}
|
|
118
|
+
#endif
|
|
61
119
|
|
|
62
120
|
} // namespace facebook::react
|
|
@@ -35,6 +35,42 @@ class GridRenderLayerProps final : public ViewProps {
|
|
|
35
35
|
#endif
|
|
36
36
|
|
|
37
37
|
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
class NexradRadarLayerProps final : public ViewProps {
|
|
41
|
+
public:
|
|
42
|
+
NexradRadarLayerProps() = default;
|
|
43
|
+
NexradRadarLayerProps(const PropsParserContext& context, const NexradRadarLayerProps &sourceProps, const RawProps &rawProps);
|
|
44
|
+
|
|
45
|
+
#pragma mark - Props
|
|
46
|
+
|
|
47
|
+
std::string belowID{};
|
|
48
|
+
|
|
49
|
+
#ifdef RN_SERIALIZABLE_STATE
|
|
50
|
+
ComponentName getDiffPropsImplementationTarget() const override;
|
|
51
|
+
|
|
52
|
+
folly::dynamic getDiffProps(const Props* prevProps) const override;
|
|
53
|
+
#endif
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
class SatelliteLayerProps final : public ViewProps {
|
|
59
|
+
public:
|
|
60
|
+
SatelliteLayerProps() = default;
|
|
61
|
+
SatelliteLayerProps(const PropsParserContext& context, const SatelliteLayerProps &sourceProps, const RawProps &rawProps);
|
|
62
|
+
|
|
63
|
+
#pragma mark - Props
|
|
64
|
+
|
|
65
|
+
std::string belowID{};
|
|
66
|
+
|
|
67
|
+
#ifdef RN_SERIALIZABLE_STATE
|
|
68
|
+
ComponentName getDiffPropsImplementationTarget() const override;
|
|
69
|
+
|
|
70
|
+
folly::dynamic getDiffProps(const Props* prevProps) const override;
|
|
71
|
+
#endif
|
|
72
|
+
|
|
73
|
+
|
|
38
74
|
};
|
|
39
75
|
|
|
40
76
|
} // namespace facebook::react
|
|
@@ -13,5 +13,7 @@
|
|
|
13
13
|
namespace facebook::react {
|
|
14
14
|
|
|
15
15
|
extern const char GridRenderLayerComponentName[] = "GridRenderLayer";
|
|
16
|
+
extern const char NexradRadarLayerComponentName[] = "NexradRadarLayer";
|
|
17
|
+
extern const char SatelliteLayerComponentName[] = "SatelliteLayer";
|
|
16
18
|
|
|
17
19
|
} // namespace facebook::react
|
|
@@ -29,4 +29,26 @@ using GridRenderLayerShadowNode = ConcreteViewShadowNode<
|
|
|
29
29
|
GridRenderLayerEventEmitter,
|
|
30
30
|
GridRenderLayerState>;
|
|
31
31
|
|
|
32
|
+
JSI_EXPORT extern const char NexradRadarLayerComponentName[];
|
|
33
|
+
|
|
34
|
+
/*
|
|
35
|
+
* `ShadowNode` for <NexradRadarLayer> component.
|
|
36
|
+
*/
|
|
37
|
+
using NexradRadarLayerShadowNode = ConcreteViewShadowNode<
|
|
38
|
+
NexradRadarLayerComponentName,
|
|
39
|
+
NexradRadarLayerProps,
|
|
40
|
+
NexradRadarLayerEventEmitter,
|
|
41
|
+
NexradRadarLayerState>;
|
|
42
|
+
|
|
43
|
+
JSI_EXPORT extern const char SatelliteLayerComponentName[];
|
|
44
|
+
|
|
45
|
+
/*
|
|
46
|
+
* `ShadowNode` for <SatelliteLayer> component.
|
|
47
|
+
*/
|
|
48
|
+
using SatelliteLayerShadowNode = ConcreteViewShadowNode<
|
|
49
|
+
SatelliteLayerComponentName,
|
|
50
|
+
SatelliteLayerProps,
|
|
51
|
+
SatelliteLayerEventEmitter,
|
|
52
|
+
SatelliteLayerState>;
|
|
53
|
+
|
|
32
54
|
} // namespace facebook::react
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"libraryName":"","modules":{"GridRenderLayer":{"type":"Component","components":{"GridRenderLayer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"opacity","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":1}},{"name":"dataRange","optional":true,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"DoubleTypeAnnotation"}}},{"name":"belowID","optional":true,"typeAnnotation":{"type":"StringTypeAnnotation","default":null}},{"name":"smoothing","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":true}}],"commands":[]}}}}}
|
|
1
|
+
{"libraryName":"","modules":{"GridRenderLayer":{"type":"Component","components":{"GridRenderLayer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"opacity","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":1}},{"name":"dataRange","optional":true,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"DoubleTypeAnnotation"}}},{"name":"belowID","optional":true,"typeAnnotation":{"type":"StringTypeAnnotation","default":null}},{"name":"smoothing","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":true}}],"commands":[]}}},"NexradRadarLayer":{"type":"Component","components":{"NexradRadarLayer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"belowID","optional":true,"typeAnnotation":{"type":"StringTypeAnnotation","default":null}}],"commands":[]}}},"SatelliteLayer":{"type":"Component","components":{"SatelliteLayer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"belowID","optional":true,"typeAnnotation":{"type":"StringTypeAnnotation","default":null}}],"commands":[]}}}}}
|
package/lib/commonjs/android/build/intermediates/aar_main_jar/debug/syncDebugLibJars/classes.jar
ADDED
|
Binary file
|
|
Binary file
|
package/lib/commonjs/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
@echo off
|
|
2
|
+
"C:\\Users\\my41m\\AppData\\Local\\Android\\Sdk\\cmake\\3.22.1\\bin\\ninja.exe" ^
|
|
3
|
+
-C ^
|
|
4
|
+
"C:\\Users\\my41m\\aguacero\\aguacero-sdks\\packages\\react-native\\android\\.cxx\\Debug\\4j656ei4\\arm64-v8a" ^
|
|
5
|
+
aguacero_satellite_ktx ^
|
|
6
|
+
basisu ^
|
|
7
|
+
example ^
|
|
8
|
+
example_capi ^
|
|
9
|
+
example_transcoding
|