+ External data source integrations for space weather monitoring applications.
+
+
+[](https://www.nuget.org/packages/AuroraScienceHub.Integrations.NoaaClient/)
+[](https://www.nuget.org/packages/AuroraScienceHub.Integrations.NoaaClient/)
+[](https://dotnet.microsoft.com/)
+[](https://learn.microsoft.com/en-us/dotnet/csharp/)
+
+[](https://github.com/Aurora-Science-Hub/Integrations/actions/workflows/dotnet.yml)
+[](https://opensource.org/licenses/MIT)
+[](https://github.com/Aurora-Science-Hub/Integrations)
+
+
Getting Started •
+
Available Packages •
+
Architecture •
+
Development •
+
Code Style •
+
Testing •
+
License •
+
Contributing •
+
Links
+
+
+
+
+## Getting Started
+
+All packages are distributed via NuGet and target **.NET 10.0**. Install individual packages as needed:
+
+```bash
+dotnet add package AuroraScienceHub.Integrations.NoaaClient
+```
+
+### Quick Example
+
+```csharp
+// Register services
+builder.Services.AddNoaaClients();
+
+// Inject and use clients
+public class SpaceWeatherService
+{
+ private readonly IAceClient _aceClient;
+
+ public SpaceWeatherService(IAceClient aceClient)
+ {
+ _aceClient = aceClient;
+ }
+
+ public async Task