Flutter天文绘图插件skyplot的使用

发布于 1周前 作者 nodeper 来自 Flutter

Flutter天文绘图插件skyplot的使用

SkyPlot Flutter Package

SkyPlot 是一个功能强大的 Flutter 库,用于在动态天空图界面中可视化位置数据。它不仅限于 GNSS 卫星位置,还可以适应各种其他应用,如雷达地图、设备可用性扫描等。其灵活性使其适用于广泛的应用场景。

Features

  • 多用途可视化:适合显示从卫星到本地设备的2D位置数据。
  • 可定制的界面:可以根据应用程序的需求自定义外观,包括颜色、图标等。
  • 自适应和响应式:无缝适应不同的屏幕尺寸和方向。
  • 交互性和信息丰富:提供交互元素以吸引用户并显示详细信息。

Getting Started

添加依赖

pubspec.yaml 文件中添加 SkyPlot 依赖:

dependencies:
  skyplot: any

导入库

在 Dart 代码中导入 SkyPlot:

import 'package:skyplot/skyplot.dart';

Usage

创建 SkyPlot Widget

通过提供数据和配置来创建 SkyPlot Widget:

SkyPlot(
  skyData: yourDataList,
  categories: yourCategoryMap,
  options: SkyPlotOptions(),
)

SkyData

SkyData 是一个多功能的数据结构,表示图中的每个项目:

SkyData(
  azimuthDegrees: 100,
  elevationDegrees: 50,
  category: 'CategoryName',
  id: 'UniqueID',
  usedInFix: true, // 或 false,具体取决于上下文
)

自定义

配置天空图的外观和行为:

SkyPlotOptions(
  baseRadiusInFix: 8.0,
  baseRadiusNotInFix: 6.0,
  azimuthDivisions: 30,
  // ... 其他可自定义选项 ...
)

Example Applications

  • 卫星跟踪:可视化轨道上的卫星。
  • 雷达映射:显示雷达扫描和检测到的对象。
  • 设备扫描:显示一定范围内的可用设备。

Contributing

🍺 欢迎提交 Pull 请求!

开源没有贡献者是没有意义的。无论你的更改有多大,即使是修改一行代码也对我们帮助很大。

文档中可能有很多语法问题。如果你英语流利,帮助我们修复这些问题将是一个很大的帮助。

报告错误和问题也是贡献的一部分。

Author

Charles Gameti: gameticharles@GitHub.

License

本库在 MIT 许可下提供。

示例代码

以下是一个完整的示例代码,展示了如何在 Flutter 应用中使用 SkyPlot:

import 'package:flutter/material.dart';
import 'package:permission_handler/permission_handler.dart';
import 'package:skyplot/skyplot.dart';
import 'package:raw_gnss/raw_gnss.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const MyHomePage(title: 'SkyPlot Example'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key, required this.title});

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  late RawGnss _rawGnss;
  var _hasPermissions = false;

  @override
  void initState() {
    super.initState();
    _rawGnss = RawGnss();

    Permission.location
        .request()
        .then((value) => setState(() => _hasPermissions = value.isGranted));
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        backgroundColor: Theme.of(context).colorScheme.inversePrimary,
        title: Text(widget.title),
      ),
      body: Column(
        mainAxisAlignment: MainAxisAlignment.center,
        children: <Widget>[
          Expanded(
            child: SkyPlotGNSS(
              rawGnss: _rawGnss,
              hasPermissions: _hasPermissions,
              options: SkyPlotOptions(
                azimuthTextStyle: TextStyle(
                    color: Theme.of(context).colorScheme.primary,
                    fontSize: 10,
                    fontWeight: FontWeight.normal),
                directionTextStyle: TextStyle(
                    color: Theme.of(context).colorScheme.primary,
                    fontSize: 10,
                    fontWeight: FontWeight.bold),
                elevationTextStyle: TextStyle(
                    color: Theme.of(context).colorScheme.primary,
                    fontSize: 10,
                    fontWeight: FontWeight.normal),
                showSkyObjectNotInFix: true,
                directionDetail: DirectionDetail.eight,
              ),
            ),
          ),
        ],
      ),
      floatingActionButton: Column(
        children: [
          FloatingActionButton(
            onPressed: () {},
            tooltip: 'Increment',
            child: const Icon(Icons.add),
          ),
          FloatingActionButton(
            onPressed: () {},
            tooltip: 'Increment',
            child: const Icon(Icons.add),
          ),
          FloatingActionButton(
            onPressed: () {},
            tooltip: 'Increment',
            child: const Icon(Icons.add),
          ),
          FloatingActionButton(
            onPressed: () {},
            tooltip: 'Increment',
            child: const Icon(Icons.add),
          ),
        ].insertBetween<Widget>(const SizedBox(height: 5.0)).toList(),
      ), // 这个尾随逗号使构建方法的自动格式化更美观。
    );
  }
}

说明

  • 权限请求:在 initState 中请求位置权限,并根据权限状态更新 _hasPermissions
  • SkyPlotGNSS:使用 SkyPlotGNSS 组件显示 GNSS 数据。
  • 自定义选项:通过 SkyPlotOptions 配置天空图的样式和行为。

希望这个示例能帮助你更好地理解和使用 SkyPlot 插件!


更多关于Flutter天文绘图插件skyplot的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html

1 回复

更多关于Flutter天文绘图插件skyplot的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html


当然,以下是一个关于如何在Flutter项目中使用skyplot插件进行天文绘图的示例代码。skyplot插件(假设它存在,因为这是一个假设的插件名称,实际中可能有所不同)通常用于绘制星空图、星座图等天文相关的图形。

首先,确保你已经在pubspec.yaml文件中添加了skyplot依赖项(这里假设该插件名为skyplot,实际使用时请替换为真实插件名):

dependencies:
  flutter:
    sdk: flutter
  skyplot: ^x.y.z  # 替换为实际版本号

然后运行flutter pub get来获取依赖项。

接下来,你可以在你的Flutter项目中创建一个页面来使用skyplot插件。以下是一个简单的示例,展示如何初始化并绘制一个基本的星空图:

import 'package:flutter/material.dart';
import 'package:skyplot/skyplot.dart';  // 假设插件的import路径

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Sky Plot Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: SkyPlotScreen(),
    );
  }
}

class SkyPlotScreen extends StatefulWidget {
  @override
  _SkyPlotScreenState createState() => _SkyPlotScreenState();
}

class _SkyPlotScreenState extends State<SkyPlotScreen> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Sky Plot Demo'),
      ),
      body: Center(
        child: SkyPlot(
          // 初始化SkyPlot的参数,这里假设需要一些天文数据
          constellations: [
            Constellation(
              name: 'Orion',
              stars: [
                Star(ra: 5.385, dec: -9.826, magnitude: 1.2),
                Star(ra: 5.142, dec: -7.225, magnitude: 1.7),
                // 添加更多星星数据
              ],
            ),
            // 添加更多星座数据
          ],
          // 其他可能的参数,比如背景图、网格线等
          backgroundColor: Colors.black,
          gridLines: true,
        ),
      ),
    );
  }
}

// 假设的Constellation和Star类,实际使用时请参考插件文档
class Constellation {
  final String name;
  final List<Star> stars;

  Constellation({required this.name, required this.stars});
}

class Star {
  final double ra; // 赤经
  final double dec; // 赤纬
  final double magnitude; // 星等

  Star({required this.ra, required this.dec, required this.magnitude});
}

// 假设的SkyPlot组件,实际使用时请参考插件提供的组件
class SkyPlot extends StatelessWidget {
  final List<Constellation> constellations;
  final Color backgroundColor;
  final bool gridLines;

  SkyPlot({
    required this.constellations,
    this.backgroundColor = Colors.black,
    this.gridLines = false,
  });

  @override
  Widget build(BuildContext context) {
    // 这里应该是插件提供的自定义绘制逻辑,但因为没有真实插件,所以只是示例
    return CustomPaint(
      painter: SkyPlotPainter(
        constellations: constellations,
        backgroundColor: backgroundColor,
        gridLines: gridLines,
      ),
      size: Size.infinite, // 或者其他合适的尺寸
    );
  }
}

// 假设的SkyPlotPainter类,用于在Canvas上绘制星空图
class SkyPlotPainter extends CustomPainter {
  final List<Constellation> constellations;
  final Color backgroundColor;
  final bool gridLines;

  SkyPlotPainter({
    required this.constellations,
    required this.backgroundColor,
    required this.gridLines,
  });

  @override
  void paint(Canvas canvas, Size size) {
    final Paint backgroundColorPaint = Paint()
      ..color = backgroundColor
      ..style = PaintingStyle.fill;
    canvas.drawRect(Rect.fromLTWH(0, 0, size.width, size.height), backgroundColorPaint);

    if (gridLines) {
      // 绘制网格线逻辑(省略具体实现)
    }

    // 绘制星座和星星逻辑(省略具体实现,这里只是示意)
    constellations.forEach((constellation) {
      constellation.stars.forEach((star) {
        // 根据ra和dec计算屏幕上的坐标(这里需要复杂的转换逻辑,省略)
        final Offset starPosition = Offset(/*计算后的x*/, /*计算后的y*/);
        final Paint starPaint = Paint()
          ..color = Colors.white
          ..style = PaintingStyle.fill;
        canvas.drawCircle(starPosition, 2.0, starPaint); // 假设星星的大小为2.0
      });
    });
  }

  @override
  bool shouldRepaint(covariant CustomPainter oldDelegate) {
    return false; // 根据需要实现
  }
}

注意

  1. 上面的代码是一个假设的示例,因为skyplot插件可能并不存在,或者其API可能与示例中的不同。实际使用时,请查阅该插件的官方文档。
  2. 星座和星星的数据(如赤经、赤纬和星等)需要根据实际天文数据进行填充。
  3. 星星在屏幕上的位置计算需要根据赤经和赤纬转换为屏幕坐标,这通常涉及复杂的投影和转换逻辑,这里为了简化而省略。
  4. CustomPaintCustomPainter用于在Flutter中自定义绘制逻辑,这里假设SkyPlot组件内部使用了这些类来绘制星空图。

希望这个示例能帮助你理解如何在Flutter项目中使用天文绘图插件进行绘图。如果有具体的插件或API文档,请参考其提供的示例和指南。

回到顶部