diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..db54574
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,46 @@
+# Miscellaneous
+*.class
+*.log
+*.pyc
+*.swp
+.DS_Store
+.atom/
+.buildlog/
+.history
+.svn/
+
+# IntelliJ related
+*.iml
+*.ipr
+*.iws
+.idea/
+
+# The .vscode folder contains launch configuration and tasks you configure in
+# VS Code which you may wish to be included in version control, so this line
+# is commented out by default.
+#.vscode/
+
+# Flutter/Dart/Pub related
+**/doc/api/
+**/ios/Flutter/.last_build_id
+.dart_tool/
+.flutter-plugins
+.flutter-plugins-dependencies
+.packages
+.pub-cache/
+.pub/
+/build/
+
+# Web related
+lib/generated_plugin_registrant.dart
+
+# Symbolication related
+app.*.symbols
+
+# Obfuscation related
+app.*.map.json
+
+# Exceptions to above rules.
+!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
+
+assets/offline_layers/**
\ No newline at end of file
diff --git a/.metadata b/.metadata
new file mode 100644
index 0000000..0924d32
--- /dev/null
+++ b/.metadata
@@ -0,0 +1,10 @@
+# This file tracks properties of this Flutter project.
+# Used by Flutter tool to assess capabilities and perform upgrades etc.
+#
+# This file should be version controlled and should not be manually edited.
+
+version:
+ revision: 6a525b9aa5e5f7f2286e96e8c9b4c0eb86e21ff6
+ channel: master
+
+project_type: app
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..ea019eb
--- /dev/null
+++ b/README.md
@@ -0,0 +1,19 @@
+# nofussppg
+
+A new Flutter project.
+
+## Getting Started
+
+This project is a starting point for a Flutter application.
+
+A few resources to get you started if this is your first Flutter project:
+
+- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab)
+- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook)
+
+For help getting started with Flutter, view our
+[online documentation](https://flutter.dev/docs), which offers tutorials,
+samples, guidance on mobile development, and a full API reference.
+
+https://wxs.ign.fr/an7nvfzojv5wa96dsga5nk8w/geoportail/wmts?layer=GEOGRAPHICALGRIDSYSTEMS.MAPS.SCAN-OACI&style=normal&tilematrixset=PM&Service=WMTS&Request=GetTile&Version=1.0.0&Format=image%2Fjpeg&TileMatrix=11&TileCol=1079&TileRow=769
+https://wxs.ign.fr/an7nvfzojv5wa96dsga5nk8w/geoportail/wmts?layer=GEOGRAPHICALGRIDSYSTEMS.MAPS.SCAN-OACI&style=normal&tilematrixset=PM&Service=WMTS&Request=GetTile&Version=1.0.0&Format=image%2Fjpeg&TileMatrix=11&TileCol=1002&TileRow=684
diff --git a/android/.gitignore b/android/.gitignore
new file mode 100644
index 0000000..0a741cb
--- /dev/null
+++ b/android/.gitignore
@@ -0,0 +1,11 @@
+gradle-wrapper.jar
+/.gradle
+/captures/
+/gradlew
+/gradlew.bat
+/local.properties
+GeneratedPluginRegistrant.java
+
+# Remember to never publicly share your keystore.
+# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
+key.properties
diff --git a/android/app/build.gradle b/android/app/build.gradle
new file mode 100644
index 0000000..db8a160
--- /dev/null
+++ b/android/app/build.gradle
@@ -0,0 +1,63 @@
+def localProperties = new Properties()
+def localPropertiesFile = rootProject.file('local.properties')
+if (localPropertiesFile.exists()) {
+ localPropertiesFile.withReader('UTF-8') { reader ->
+ localProperties.load(reader)
+ }
+}
+
+def flutterRoot = localProperties.getProperty('flutter.sdk')
+if (flutterRoot == null) {
+ throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
+}
+
+def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
+if (flutterVersionCode == null) {
+ flutterVersionCode = '1'
+}
+
+def flutterVersionName = localProperties.getProperty('flutter.versionName')
+if (flutterVersionName == null) {
+ flutterVersionName = '1.0'
+}
+
+apply plugin: 'com.android.application'
+apply plugin: 'kotlin-android'
+apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
+
+android {
+ compileSdkVersion 28
+
+ sourceSets {
+ main.java.srcDirs += 'src/main/kotlin'
+ }
+
+ lintOptions {
+ disable 'InvalidPackage'
+ }
+
+ defaultConfig {
+ // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
+ applicationId "fr.carameldunes.nofussppg"
+ minSdkVersion 16
+ targetSdkVersion 28
+ versionCode flutterVersionCode.toInteger()
+ versionName flutterVersionName
+ }
+
+ buildTypes {
+ release {
+ // TODO: Add your own signing config for the release build.
+ // Signing with the debug keys for now, so `flutter run --release` works.
+ signingConfig signingConfigs.debug
+ }
+ }
+}
+
+flutter {
+ source '../..'
+}
+
+dependencies {
+ implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
+}
diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml
new file mode 100644
index 0000000..7077dd5
--- /dev/null
+++ b/android/app/src/debug/AndroidManifest.xml
@@ -0,0 +1,3 @@
+
+
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..4cc9f10
--- /dev/null
+++ b/android/app/src/main/AndroidManifest.xml
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/app/src/main/kotlin/fr/carameldunes/nofussppg/MainActivity.kt b/android/app/src/main/kotlin/fr/carameldunes/nofussppg/MainActivity.kt
new file mode 100644
index 0000000..f31eef6
--- /dev/null
+++ b/android/app/src/main/kotlin/fr/carameldunes/nofussppg/MainActivity.kt
@@ -0,0 +1,6 @@
+package fr.carameldunes.nofussppg
+
+import io.flutter.embedding.android.FlutterActivity
+
+class MainActivity: FlutterActivity() {
+}
diff --git a/android/app/src/main/res/drawable/launch_background.xml b/android/app/src/main/res/drawable/launch_background.xml
new file mode 100644
index 0000000..304732f
--- /dev/null
+++ b/android/app/src/main/res/drawable/launch_background.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 0000000..db77bb4
Binary files /dev/null and b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 0000000..17987b7
Binary files /dev/null and b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 0000000..09d4391
Binary files /dev/null and b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000..d5f1c8d
Binary files /dev/null and b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 0000000..4d6372e
Binary files /dev/null and b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml
new file mode 100644
index 0000000..1f83a33
--- /dev/null
+++ b/android/app/src/main/res/values/styles.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
diff --git a/android/app/src/profile/AndroidManifest.xml b/android/app/src/profile/AndroidManifest.xml
new file mode 100644
index 0000000..7077dd5
--- /dev/null
+++ b/android/app/src/profile/AndroidManifest.xml
@@ -0,0 +1,3 @@
+
+
diff --git a/android/build.gradle b/android/build.gradle
new file mode 100644
index 0000000..3100ad2
--- /dev/null
+++ b/android/build.gradle
@@ -0,0 +1,31 @@
+buildscript {
+ ext.kotlin_version = '1.3.50'
+ repositories {
+ google()
+ jcenter()
+ }
+
+ dependencies {
+ classpath 'com.android.tools.build:gradle:3.5.0'
+ classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
+ }
+}
+
+allprojects {
+ repositories {
+ google()
+ jcenter()
+ }
+}
+
+rootProject.buildDir = '../build'
+subprojects {
+ project.buildDir = "${rootProject.buildDir}/${project.name}"
+}
+subprojects {
+ project.evaluationDependsOn(':app')
+}
+
+task clean(type: Delete) {
+ delete rootProject.buildDir
+}
diff --git a/android/gradle.properties b/android/gradle.properties
new file mode 100644
index 0000000..38c8d45
--- /dev/null
+++ b/android/gradle.properties
@@ -0,0 +1,4 @@
+org.gradle.jvmargs=-Xmx1536M
+android.enableR8=true
+android.useAndroidX=true
+android.enableJetifier=true
diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..296b146
--- /dev/null
+++ b/android/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
+#Fri Jun 23 08:50:38 CEST 2017
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip
diff --git a/android/settings.gradle b/android/settings.gradle
new file mode 100644
index 0000000..44e62bc
--- /dev/null
+++ b/android/settings.gradle
@@ -0,0 +1,11 @@
+include ':app'
+
+def localPropertiesFile = new File(rootProject.projectDir, "local.properties")
+def properties = new Properties()
+
+assert localPropertiesFile.exists()
+localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) }
+
+def flutterSdkPath = properties.getProperty("flutter.sdk")
+assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
+apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"
diff --git a/assets/logo.png b/assets/logo.png
new file mode 100644
index 0000000..ea40708
Binary files /dev/null and b/assets/logo.png differ
diff --git a/assets/survol.png b/assets/survol.png
new file mode 100644
index 0000000..cb91397
Binary files /dev/null and b/assets/survol.png differ
diff --git a/bin/download_ign.dart b/bin/download_ign.dart
new file mode 100644
index 0000000..59eb7a2
--- /dev/null
+++ b/bin/download_ign.dart
@@ -0,0 +1,111 @@
+import 'dart:io';
+
+import 'package:http/http.dart' as http;
+
+class UserAgentClient extends http.BaseClient {
+ final String userAgent;
+ final http.Client _inner;
+
+ UserAgentClient(this.userAgent, this._inner);
+
+ Future send(http.BaseRequest request) {
+ request.headers['user-agent'] = userAgent;
+ return _inner.send(request);
+ }
+}
+
+Future downloadTile(http.Client client, int x, int y, int zoom) async {
+ var path = 'tiles/$zoom/$y-$x.jpg';
+
+ var file = File(path);
+
+ if (!await file.exists()) {
+ String url =
+ 'https://wxs.ign.fr/an7nvfzojv5wa96dsga5nk8w/geoportail/wmts?layer=GEOGRAPHICALGRIDSYSTEMS.MAPS.SCAN-OACI&style=normal&tilematrixset=PM&Service=WMTS&Request=GetTile&Version=1.0.0&Format=image/jpeg&TileMatrix=$zoom&TileCol=$y&TileRow=$x';
+
+ print('$path dling');
+ var r = await client.get(url);
+
+ if (r.statusCode == 200) {
+ print('$path 200');
+
+ await file.writeAsBytes(r.bodyBytes);
+ return Future.value(true);
+ } else {
+ print(url);
+ return Future.value(false);
+ }
+ } else {
+ // print('tiles/$y-$x.jpg exists');
+ return Future.value(true);
+ }
+}
+
+Future dl11() async {
+ String ua =
+ 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0';
+
+ var cl = UserAgentClient(ua, http.Client());
+
+ List toWait = [];
+
+ for (int x = 684; x < 770; x++) {
+ for (int y = 993; y < 1080; y++) {
+ await downloadTile(cl, x, y, 11);
+ }
+ }
+
+ await Future.wait(toWait);
+
+ cl.close();
+}
+
+Future dl8() async {
+ String ua =
+ 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0';
+
+ var cl = UserAgentClient(ua, http.Client());
+
+ for (int x = 85; x < 97; x++) {
+ for (int y = 123; y < 137; y++) {
+ await downloadTile(cl, x, y, 8);
+ }
+ }
+
+ cl.close();
+}
+
+Future dl10() async {
+ String ua =
+ 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0';
+
+ var cl = UserAgentClient(ua, http.Client());
+
+ for (int x = 340; x < 387; x++) {
+ for (int y = 494; y < 545; y++) {
+ await downloadTile(cl, x, y, 10);
+ }
+ }
+
+ cl.close();
+}
+
+Future dl9() async {
+ String ua =
+ 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0';
+
+ var cl = UserAgentClient(ua, http.Client());
+
+ for (int x = 170; x < 194; x++) {
+ for (int y = 247; y < 273; y++) {
+ await downloadTile(cl, x, y, 9);
+ }
+ }
+
+ cl.close();
+}
+
+Future main(List arguments) async {
+ await dl10();
+ return 0;
+}
diff --git a/ios/.gitignore b/ios/.gitignore
new file mode 100644
index 0000000..e96ef60
--- /dev/null
+++ b/ios/.gitignore
@@ -0,0 +1,32 @@
+*.mode1v3
+*.mode2v3
+*.moved-aside
+*.pbxuser
+*.perspectivev3
+**/*sync/
+.sconsign.dblite
+.tags*
+**/.vagrant/
+**/DerivedData/
+Icon?
+**/Pods/
+**/.symlinks/
+profile
+xcuserdata
+**/.generated/
+Flutter/App.framework
+Flutter/Flutter.framework
+Flutter/Flutter.podspec
+Flutter/Generated.xcconfig
+Flutter/app.flx
+Flutter/app.zip
+Flutter/flutter_assets/
+Flutter/flutter_export_environment.sh
+ServiceDefinitions.json
+Runner/GeneratedPluginRegistrant.*
+
+# Exceptions to above rules.
+!default.mode1v3
+!default.mode2v3
+!default.pbxuser
+!default.perspectivev3
diff --git a/ios/Flutter/AppFrameworkInfo.plist b/ios/Flutter/AppFrameworkInfo.plist
new file mode 100644
index 0000000..6b4c0f7
--- /dev/null
+++ b/ios/Flutter/AppFrameworkInfo.plist
@@ -0,0 +1,26 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ $(DEVELOPMENT_LANGUAGE)
+ CFBundleExecutable
+ App
+ CFBundleIdentifier
+ io.flutter.flutter.app
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ App
+ CFBundlePackageType
+ FMWK
+ CFBundleShortVersionString
+ 1.0
+ CFBundleSignature
+ ????
+ CFBundleVersion
+ 1.0
+ MinimumOSVersion
+ 8.0
+
+
diff --git a/ios/Flutter/Debug.xcconfig b/ios/Flutter/Debug.xcconfig
new file mode 100644
index 0000000..592ceee
--- /dev/null
+++ b/ios/Flutter/Debug.xcconfig
@@ -0,0 +1 @@
+#include "Generated.xcconfig"
diff --git a/ios/Flutter/Release.xcconfig b/ios/Flutter/Release.xcconfig
new file mode 100644
index 0000000..592ceee
--- /dev/null
+++ b/ios/Flutter/Release.xcconfig
@@ -0,0 +1 @@
+#include "Generated.xcconfig"
diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj
new file mode 100644
index 0000000..859ede1
--- /dev/null
+++ b/ios/Runner.xcodeproj/project.pbxproj
@@ -0,0 +1,495 @@
+// !$*UTF8*$!
+{
+ archiveVersion = 1;
+ classes = {
+ };
+ objectVersion = 46;
+ objects = {
+
+/* Begin PBXBuildFile section */
+ 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
+ 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
+ 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
+ 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
+ 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
+ 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXCopyFilesBuildPhase section */
+ 9705A1C41CF9048500538489 /* Embed Frameworks */ = {
+ isa = PBXCopyFilesBuildPhase;
+ buildActionMask = 2147483647;
+ dstPath = "";
+ dstSubfolderSpec = 10;
+ files = (
+ );
+ name = "Embed Frameworks";
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXCopyFilesBuildPhase section */
+
+/* Begin PBXFileReference section */
+ 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; };
+ 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; };
+ 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; };
+ 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; };
+ 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
+ 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; };
+ 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; };
+ 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; };
+ 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
+ 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
+ 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
+ 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
+/* End PBXFileReference section */
+
+/* Begin PBXFrameworksBuildPhase section */
+ 97C146EB1CF9000F007C117D /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+ 9740EEB11CF90186004384FC /* Flutter */ = {
+ isa = PBXGroup;
+ children = (
+ 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
+ 9740EEB21CF90195004384FC /* Debug.xcconfig */,
+ 7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
+ 9740EEB31CF90195004384FC /* Generated.xcconfig */,
+ );
+ name = Flutter;
+ sourceTree = "";
+ };
+ 97C146E51CF9000F007C117D = {
+ isa = PBXGroup;
+ children = (
+ 9740EEB11CF90186004384FC /* Flutter */,
+ 97C146F01CF9000F007C117D /* Runner */,
+ 97C146EF1CF9000F007C117D /* Products */,
+ );
+ sourceTree = "";
+ };
+ 97C146EF1CF9000F007C117D /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 97C146EE1CF9000F007C117D /* Runner.app */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ 97C146F01CF9000F007C117D /* Runner */ = {
+ isa = PBXGroup;
+ children = (
+ 97C146FA1CF9000F007C117D /* Main.storyboard */,
+ 97C146FD1CF9000F007C117D /* Assets.xcassets */,
+ 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
+ 97C147021CF9000F007C117D /* Info.plist */,
+ 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
+ 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
+ 74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
+ 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
+ );
+ path = Runner;
+ sourceTree = "";
+ };
+/* End PBXGroup section */
+
+/* Begin PBXNativeTarget section */
+ 97C146ED1CF9000F007C117D /* Runner */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
+ buildPhases = (
+ 9740EEB61CF901F6004384FC /* Run Script */,
+ 97C146EA1CF9000F007C117D /* Sources */,
+ 97C146EB1CF9000F007C117D /* Frameworks */,
+ 97C146EC1CF9000F007C117D /* Resources */,
+ 9705A1C41CF9048500538489 /* Embed Frameworks */,
+ 3B06AD1E1E4923F5004D2608 /* Thin Binary */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ name = Runner;
+ productName = Runner;
+ productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
+ productType = "com.apple.product-type.application";
+ };
+/* End PBXNativeTarget section */
+
+/* Begin PBXProject section */
+ 97C146E61CF9000F007C117D /* Project object */ = {
+ isa = PBXProject;
+ attributes = {
+ LastUpgradeCheck = 1020;
+ ORGANIZATIONNAME = "";
+ TargetAttributes = {
+ 97C146ED1CF9000F007C117D = {
+ CreatedOnToolsVersion = 7.3.1;
+ LastSwiftMigration = 1100;
+ };
+ };
+ };
+ buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
+ compatibilityVersion = "Xcode 9.3";
+ developmentRegion = en;
+ hasScannedForEncodings = 0;
+ knownRegions = (
+ en,
+ Base,
+ );
+ mainGroup = 97C146E51CF9000F007C117D;
+ productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
+ projectDirPath = "";
+ projectRoot = "";
+ targets = (
+ 97C146ED1CF9000F007C117D /* Runner */,
+ );
+ };
+/* End PBXProject section */
+
+/* Begin PBXResourcesBuildPhase section */
+ 97C146EC1CF9000F007C117D /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
+ 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
+ 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
+ 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXResourcesBuildPhase section */
+
+/* Begin PBXShellScriptBuildPhase section */
+ 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputPaths = (
+ );
+ name = "Thin Binary";
+ outputPaths = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
+ };
+ 9740EEB61CF901F6004384FC /* Run Script */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputPaths = (
+ );
+ name = "Run Script";
+ outputPaths = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
+ };
+/* End PBXShellScriptBuildPhase section */
+
+/* Begin PBXSourcesBuildPhase section */
+ 97C146EA1CF9000F007C117D /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
+ 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXSourcesBuildPhase section */
+
+/* Begin PBXVariantGroup section */
+ 97C146FA1CF9000F007C117D /* Main.storyboard */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 97C146FB1CF9000F007C117D /* Base */,
+ );
+ name = Main.storyboard;
+ sourceTree = "";
+ };
+ 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 97C147001CF9000F007C117D /* Base */,
+ );
+ name = LaunchScreen.storyboard;
+ sourceTree = "";
+ };
+/* End PBXVariantGroup section */
+
+/* Begin XCBuildConfiguration section */
+ 249021D3217E4FDB00AE95B9 /* Profile */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 8.0;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ SDKROOT = iphoneos;
+ SUPPORTED_PLATFORMS = iphoneos;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
+ };
+ name = Profile;
+ };
+ 249021D4217E4FDB00AE95B9 /* Profile */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
+ ENABLE_BITCODE = NO;
+ FRAMEWORK_SEARCH_PATHS = (
+ "$(inherited)",
+ "$(PROJECT_DIR)/Flutter",
+ );
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
+ LIBRARY_SEARCH_PATHS = (
+ "$(inherited)",
+ "$(PROJECT_DIR)/Flutter",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = fr.carameldunes.nofussppg;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Profile;
+ };
+ 97C147031CF9000F007C117D /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = dwarf;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_TESTABILITY = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "DEBUG=1",
+ "$(inherited)",
+ );
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 8.0;
+ MTL_ENABLE_DEBUG_INFO = YES;
+ ONLY_ACTIVE_ARCH = YES;
+ SDKROOT = iphoneos;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ };
+ name = Debug;
+ };
+ 97C147041CF9000F007C117D /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 8.0;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ SDKROOT = iphoneos;
+ SUPPORTED_PLATFORMS = iphoneos;
+ SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
+ };
+ name = Release;
+ };
+ 97C147061CF9000F007C117D /* Debug */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
+ ENABLE_BITCODE = NO;
+ FRAMEWORK_SEARCH_PATHS = (
+ "$(inherited)",
+ "$(PROJECT_DIR)/Flutter",
+ );
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
+ LIBRARY_SEARCH_PATHS = (
+ "$(inherited)",
+ "$(PROJECT_DIR)/Flutter",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = fr.carameldunes.nofussppg;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Debug;
+ };
+ 97C147071CF9000F007C117D /* Release */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
+ ENABLE_BITCODE = NO;
+ FRAMEWORK_SEARCH_PATHS = (
+ "$(inherited)",
+ "$(PROJECT_DIR)/Flutter",
+ );
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
+ LIBRARY_SEARCH_PATHS = (
+ "$(inherited)",
+ "$(PROJECT_DIR)/Flutter",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = fr.carameldunes.nofussppg;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Release;
+ };
+/* End XCBuildConfiguration section */
+
+/* Begin XCConfigurationList section */
+ 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 97C147031CF9000F007C117D /* Debug */,
+ 97C147041CF9000F007C117D /* Release */,
+ 249021D3217E4FDB00AE95B9 /* Profile */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 97C147061CF9000F007C117D /* Debug */,
+ 97C147071CF9000F007C117D /* Release */,
+ 249021D4217E4FDB00AE95B9 /* Profile */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+/* End XCConfigurationList section */
+ };
+ rootObject = 97C146E61CF9000F007C117D /* Project object */;
+}
diff --git a/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 0000000..1d526a1
--- /dev/null
+++ b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 0000000..18d9810
--- /dev/null
+++ b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file mode 100644
index 0000000..f9b0d7c
--- /dev/null
+++ b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
@@ -0,0 +1,8 @@
+
+
+
+
+ PreviewsEnabled
+
+
+
diff --git a/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
new file mode 100644
index 0000000..a28140c
--- /dev/null
+++ b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
@@ -0,0 +1,91 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ios/Runner.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 0000000..1d526a1
--- /dev/null
+++ b/ios/Runner.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 0000000..18d9810
--- /dev/null
+++ b/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file mode 100644
index 0000000..f9b0d7c
--- /dev/null
+++ b/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
@@ -0,0 +1,8 @@
+
+
+
+
+ PreviewsEnabled
+
+
+
diff --git a/ios/Runner/AppDelegate.swift b/ios/Runner/AppDelegate.swift
new file mode 100644
index 0000000..70693e4
--- /dev/null
+++ b/ios/Runner/AppDelegate.swift
@@ -0,0 +1,13 @@
+import UIKit
+import Flutter
+
+@UIApplicationMain
+@objc class AppDelegate: FlutterAppDelegate {
+ override func application(
+ _ application: UIApplication,
+ didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
+ ) -> Bool {
+ GeneratedPluginRegistrant.register(with: self)
+ return super.application(application, didFinishLaunchingWithOptions: launchOptions)
+ }
+}
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
new file mode 100644
index 0000000..d36b1fa
--- /dev/null
+++ b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
@@ -0,0 +1,122 @@
+{
+ "images" : [
+ {
+ "size" : "20x20",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-20x20@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "20x20",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-20x20@3x.png",
+ "scale" : "3x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-29x29@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-29x29@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-29x29@3x.png",
+ "scale" : "3x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-40x40@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-40x40@3x.png",
+ "scale" : "3x"
+ },
+ {
+ "size" : "60x60",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-60x60@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "60x60",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-60x60@3x.png",
+ "scale" : "3x"
+ },
+ {
+ "size" : "20x20",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-20x20@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "20x20",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-20x20@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-29x29@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-29x29@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-40x40@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-40x40@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "76x76",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-76x76@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "76x76",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-76x76@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "83.5x83.5",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-83.5x83.5@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "1024x1024",
+ "idiom" : "ios-marketing",
+ "filename" : "Icon-App-1024x1024@1x.png",
+ "scale" : "1x"
+ }
+ ],
+ "info" : {
+ "version" : 1,
+ "author" : "xcode"
+ }
+}
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
new file mode 100644
index 0000000..dc9ada4
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
new file mode 100644
index 0000000..28c6bf0
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
new file mode 100644
index 0000000..2ccbfd9
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
new file mode 100644
index 0000000..f091b6b
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
new file mode 100644
index 0000000..4cde121
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
new file mode 100644
index 0000000..d0ef06e
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
new file mode 100644
index 0000000..dcdc230
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
new file mode 100644
index 0000000..2ccbfd9
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
new file mode 100644
index 0000000..c8f9ed8
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
new file mode 100644
index 0000000..a6d6b86
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
new file mode 100644
index 0000000..a6d6b86
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
new file mode 100644
index 0000000..75b2d16
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
new file mode 100644
index 0000000..c4df70d
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
new file mode 100644
index 0000000..6a84f41
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ
diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
new file mode 100644
index 0000000..d0e1f58
Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ
diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
new file mode 100644
index 0000000..0bedcf2
--- /dev/null
+++ b/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
@@ -0,0 +1,23 @@
+{
+ "images" : [
+ {
+ "idiom" : "universal",
+ "filename" : "LaunchImage.png",
+ "scale" : "1x"
+ },
+ {
+ "idiom" : "universal",
+ "filename" : "LaunchImage@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "idiom" : "universal",
+ "filename" : "LaunchImage@3x.png",
+ "scale" : "3x"
+ }
+ ],
+ "info" : {
+ "version" : 1,
+ "author" : "xcode"
+ }
+}
diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
new file mode 100644
index 0000000..9da19ea
Binary files /dev/null and b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ
diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
new file mode 100644
index 0000000..9da19ea
Binary files /dev/null and b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ
diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
new file mode 100644
index 0000000..9da19ea
Binary files /dev/null and b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ
diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
new file mode 100644
index 0000000..89c2725
--- /dev/null
+++ b/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
@@ -0,0 +1,5 @@
+# Launch Screen Assets
+
+You can customize the launch screen with your own desired assets by replacing the image files in this directory.
+
+You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images.
\ No newline at end of file
diff --git a/ios/Runner/Base.lproj/LaunchScreen.storyboard b/ios/Runner/Base.lproj/LaunchScreen.storyboard
new file mode 100644
index 0000000..f2e259c
--- /dev/null
+++ b/ios/Runner/Base.lproj/LaunchScreen.storyboard
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ios/Runner/Base.lproj/Main.storyboard b/ios/Runner/Base.lproj/Main.storyboard
new file mode 100644
index 0000000..f3c2851
--- /dev/null
+++ b/ios/Runner/Base.lproj/Main.storyboard
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist
new file mode 100644
index 0000000..00fc584
--- /dev/null
+++ b/ios/Runner/Info.plist
@@ -0,0 +1,45 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ $(DEVELOPMENT_LANGUAGE)
+ CFBundleExecutable
+ $(EXECUTABLE_NAME)
+ CFBundleIdentifier
+ $(PRODUCT_BUNDLE_IDENTIFIER)
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ nofussppg
+ CFBundlePackageType
+ APPL
+ CFBundleShortVersionString
+ $(FLUTTER_BUILD_NAME)
+ CFBundleSignature
+ ????
+ CFBundleVersion
+ $(FLUTTER_BUILD_NUMBER)
+ LSRequiresIPhoneOS
+
+ UILaunchStoryboardName
+ LaunchScreen
+ UIMainStoryboardFile
+ Main
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UIViewControllerBasedStatusBarAppearance
+
+
+
diff --git a/ios/Runner/Runner-Bridging-Header.h b/ios/Runner/Runner-Bridging-Header.h
new file mode 100644
index 0000000..308a2a5
--- /dev/null
+++ b/ios/Runner/Runner-Bridging-Header.h
@@ -0,0 +1 @@
+#import "GeneratedPluginRegistrant.h"
diff --git a/lib/flight_map.dart b/lib/flight_map.dart
new file mode 100644
index 0000000..fa4cb50
--- /dev/null
+++ b/lib/flight_map.dart
@@ -0,0 +1,144 @@
+import 'dart:async';
+import 'dart:math';
+
+import 'package:flutter/material.dart';
+import 'package:flutter_map/flutter_map.dart';
+
+import 'package:nofussppg/instruments_data_source.dart';
+import 'package:latlong/latlong.dart';
+import 'preset_layers.dart';
+
+class FlightMap extends StatefulWidget {
+ final Stream dataStream;
+ final Polyline route;
+ final LongPressCallback onLongPress;
+
+ const FlightMap(
+ {Key key,
+ @required this.dataStream,
+ @required this.onLongPress,
+ this.route})
+ : super(key: key);
+
+ @override
+ _FlightMapState createState() => _FlightMapState();
+}
+
+class _FlightMapState extends State {
+ bool _centerOnPosition = false;
+
+ Marker _planeMarker;
+ MapController _mapController = MapController();
+ StreamSubscription _dataSubscription;
+ Polyline _headingPolyline;
+
+ @override
+ void initState() {
+ super.initState();
+
+ _dataSubscription = widget.dataStream.listen(_onInstrumentsData);
+ }
+
+ @override
+ void dispose() {
+ _dataSubscription?.cancel();
+
+ super.dispose();
+ }
+
+ @override
+ Widget build(BuildContext context) {
+ return Stack(
+ fit: StackFit.expand,
+ children: [
+ FlutterMap(
+ options: MapOptions(
+ center: LatLng(48.705463, 2.515869),
+ zoom: 10.0,
+ swPanBoundary: LatLng(41.327326, -5.734863),
+ nePanBoundary: LatLng(51.138001, 9.382324),
+ onLongPress: widget.onLongPress),
+ layers: [
+ TileLayerOptions(
+ urlTemplate:
+ "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
+ subdomains: ['a', 'b', 'c']),
+ PresetLayers.oaciVfrFrance,
+ // TileLayerOptions(
+ // opacity: 0.5,
+ // tileProvider: AssetTileProvider(),
+ // urlTemplate: "assets/offlineMap/{z}/{x}-{y}.jpg",
+ // minNativeZoom: 8,
+ // maxNativeZoom: 11),
+ PolylineLayerOptions(polylines: [
+ if (_headingPolyline != null) _headingPolyline,
+ if (widget.route != null) widget.route
+ ]),
+ MarkerLayerOptions(markers: [
+ if (_planeMarker != null) _planeMarker,
+ ...widget.route.points
+ .asMap()
+ .entries
+ .map((e) => Marker(
+ point: e.value,
+ builder: (context) {
+ return Text(
+ (e.key + 1).toString(),
+ style: TextStyle(
+ fontWeight: FontWeight.bold, fontSize: 20),
+ );
+ }))
+ .toList()
+ ])
+ ],
+ mapController: _mapController,
+ ),
+ Align(
+ alignment: Alignment.bottomRight,
+ child: Padding(
+ padding: const EdgeInsets.all(8.0),
+ child: FloatingActionButton(
+ child: Icon(Icons.lock,
+ color: _centerOnPosition ? Colors.blue : Colors.black),
+ backgroundColor: Colors.white,
+ onPressed: () {
+ setState(() {
+ _centerOnPosition = !_centerOnPosition;
+ });
+ }),
+ ),
+ )
+ ],
+ );
+ }
+
+ Polyline _headingLine(LatLng position, double headingInDeg) {
+ final Distance distance = const Distance();
+
+ return Polyline(
+ points: [position, distance.offset(position, 30000, headingInDeg)],
+ strokeWidth: 3.5,
+ color: Colors.purpleAccent);
+ }
+
+ void _onInstrumentsData(InstrumentsData data) {
+ if (_centerOnPosition) {
+ _mapController.move(data.position, _mapController.zoom);
+ }
+
+ if (data.headingInDeg != null) {
+ _headingPolyline = _headingLine(data.position, data.headingInDeg);
+
+ _planeMarker = Marker(
+ point: data.position,
+ builder: (context) {
+ return Transform.rotate(
+ angle: data.headingInDeg * 2 * pi / 360,
+ child: Icon(Icons.airplanemode_active,
+ color: Colors.purpleAccent));
+ });
+
+ setState(() {});
+ }
+ }
+}
diff --git a/lib/flight_recorder.dart b/lib/flight_recorder.dart
new file mode 100644
index 0000000..2c55191
--- /dev/null
+++ b/lib/flight_recorder.dart
@@ -0,0 +1,28 @@
+import 'dart:io';
+import 'package:latlong/latlong.dart';
+
+import 'package:nofussppg/instruments_data_source.dart';
+
+class FlightRecorder {
+ IOSink _outputSink;
+
+ LatLng _lastPosition;
+
+ FlightRecorder(File outputFile) {
+ _outputSink = outputFile.openWrite();
+ _outputSink.writeln(
+ 'longitude,latitude,altitudeInM,heightInM,speedInKmH,datetime');
+ }
+
+ void appendData(InstrumentsData data) {
+ if (_lastPosition == null || _lastPosition != data.position) {
+ _lastPosition = data.position;
+ _outputSink.writeln(
+ '${data.position.longitude},${data.position.latitude},${data.altitudeInM.round()},${data.heightInM.round()},${data.speedInKmH.round()},${data.time.toIso8601String()}');
+ }
+ }
+
+ void dispose() {
+ _outputSink.close();
+ }
+}
diff --git a/lib/instruments.dart b/lib/instruments.dart
new file mode 100644
index 0000000..969945d
--- /dev/null
+++ b/lib/instruments.dart
@@ -0,0 +1,85 @@
+import 'package:flutter/material.dart';
+
+import 'instruments_data_source.dart';
+import 'standard_atmosphere.dart';
+
+class Instruments extends StatelessWidget {
+ static const TextStyle commonStyle =
+ TextStyle(fontWeight: FontWeight.bold, fontSize: 30);
+
+ final InstrumentsData data;
+
+ const Instruments({Key key, @required this.data}) : super(key: key);
+
+ @override
+ Widget build(BuildContext context) {
+ return Container(
+ color: Colors.white,
+ child: Row(
+ mainAxisAlignment: MainAxisAlignment.spaceEvenly,
+ children: [
+ Column(
+ mainAxisSize: MainAxisSize.min,
+ children: [
+ Text('Height (ft)',
+ style: Theme.of(context).textTheme.subtitle2),
+ Text(
+ data.heightInM != null
+ ? StandardAtmosphere.feetFromMeters(data.heightInM)
+ .round()
+ .toString()
+ : '???',
+ style: commonStyle),
+ Text('Height (m)',
+ style: Theme.of(context).textTheme.subtitle2),
+ Text(
+ data.heightInM != null
+ ? data.heightInM.round().toString()
+ : '???',
+ style: commonStyle),
+ ],
+ ),
+ Column(
+ mainAxisSize: MainAxisSize.min,
+ children: [
+ Text('Altitude (ft)',
+ style: Theme.of(context).textTheme.subtitle2),
+ Text(
+ data.altitudeInM != null
+ ? StandardAtmosphere.feetFromMeters(data.altitudeInM)
+ .round()
+ .toString()
+ : '???',
+ style: commonStyle),
+ Text('Altitude (m)',
+ style: Theme.of(context).textTheme.subtitle2),
+ Text(
+ data.altitudeInM != null
+ ? data.altitudeInM.round().toString()
+ : '???',
+ style: commonStyle),
+ ],
+ ),
+ Column(
+ mainAxisSize: MainAxisSize.min,
+ children: [
+ Text('Heading (°)',
+ style: Theme.of(context).textTheme.subtitle2),
+ Text(
+ data.headingInDeg != null
+ ? data.headingInDeg.round().toString()
+ : '???',
+ style: commonStyle),
+ Text('Speed (km/h)',
+ style: Theme.of(context).textTheme.subtitle2),
+ Text(
+ data.speedInKmH != null
+ ? data.speedInKmH.round().toString()
+ : '???',
+ style: commonStyle),
+ ],
+ ),
+ ],
+ ));
+ }
+}
diff --git a/lib/instruments_data_source.dart b/lib/instruments_data_source.dart
new file mode 100644
index 0000000..30dfc6f
--- /dev/null
+++ b/lib/instruments_data_source.dart
@@ -0,0 +1,96 @@
+import 'dart:async';
+
+import 'package:enviro_sensors/enviro_sensors.dart';
+import 'package:geolocator/geolocator.dart';
+import 'package:meta/meta.dart';
+import 'standard_atmosphere.dart';
+import 'package:latlong/latlong.dart';
+
+class InstrumentsData {
+ final LatLng position;
+ final double speedInKmH;
+ final double altitudeInM;
+ final double heightInM;
+ final double headingInDeg;
+ final DateTime time;
+
+ InstrumentsData(
+ {@required this.position,
+ @required this.speedInKmH,
+ @required this.altitudeInM,
+ @required this.heightInM,
+ @required this.headingInDeg,
+ @required this.time});
+}
+
+class InstrumentsDataSource {
+ final LocationOptions locationOptions = LocationOptions();
+
+ double qnh;
+ double surfaceAltitudeInM;
+ final StreamController _instrumentsDataStream =
+ StreamController.broadcast();
+
+ StreamSubscription _pressureSubscription;
+ StreamSubscription _positionSubscription;
+
+ LatLng _lastPosition;
+ double _lastSpeedInKmH;
+ double _lastAltitudeInM;
+ double _lastHeightInM;
+ double _lastHeadingInDeg;
+
+ InstrumentsDataSource(
+ {@required this.qnh, @required this.surfaceAltitudeInM}) {
+ _positionSubscription =
+ getPositionStream(desiredAccuracy: LocationAccuracy.high)
+ .listen(_onNewPosition);
+
+ _pressureSubscription =
+ barometerEvents.asBroadcastStream().listen(_onNewPressure);
+ }
+
+ void dispose() {
+ _pressureSubscription.cancel();
+ _positionSubscription.cancel();
+ }
+
+ Future recalibrateAtSfc({@required double surfaceAltitudeInM}) async {
+ this.surfaceAltitudeInM = surfaceAltitudeInM;
+
+ qnh = StandardAtmosphere.qnh(
+ pressure: (await barometerEvents.asBroadcastStream().first).reading,
+ altitude: surfaceAltitudeInM);
+ }
+
+ Stream get data => _instrumentsDataStream.stream;
+
+ LatLng get lastPosition => _lastPosition;
+
+ void _sendData() {
+ _instrumentsDataStream.add(InstrumentsData(
+ position: _lastPosition,
+ speedInKmH: _lastSpeedInKmH,
+ altitudeInM: _lastAltitudeInM,
+ heightInM: _lastHeightInM,
+ headingInDeg: _lastHeadingInDeg,
+ time: DateTime.now()));
+ }
+
+ void _onNewPosition(Position position) {
+ this._lastPosition = LatLng(position.latitude, position.longitude);
+ _lastSpeedInKmH = position.speed * 3.6;
+ _lastHeadingInDeg = position.heading;
+
+ _sendData();
+ }
+
+ void _onNewPressure(BarometerEvent event) {
+ _lastAltitudeInM =
+ StandardAtmosphere.altitude(qnh: qnh, pressure: event.reading);
+
+ _lastHeightInM = _lastAltitudeInM - surfaceAltitudeInM;
+
+ _sendData();
+ }
+}
diff --git a/lib/main.dart b/lib/main.dart
new file mode 100644
index 0000000..494d919
--- /dev/null
+++ b/lib/main.dart
@@ -0,0 +1,20 @@
+import 'package:flutter/material.dart';
+import 'map_screen.dart';
+
+void main() {
+ runApp(MyApp());
+}
+
+class MyApp extends StatelessWidget {
+ @override
+ Widget build(BuildContext context) {
+ return MaterialApp(
+ title: 'NoFussPPG',
+ theme: ThemeData(
+ primaryColor: Colors.black,
+ visualDensity: VisualDensity.adaptivePlatformDensity,
+ ),
+ home: MapScreen(),
+ );
+ }
+}
diff --git a/lib/map_screen.dart b/lib/map_screen.dart
new file mode 100644
index 0000000..303c518
--- /dev/null
+++ b/lib/map_screen.dart
@@ -0,0 +1,254 @@
+import 'dart:async';
+
+import 'package:flutter/material.dart';
+import 'package:flutter/services.dart';
+
+import 'package:font_awesome_flutter/font_awesome_flutter.dart';
+import 'package:latlong/latlong.dart';
+import 'package:wakelock/wakelock.dart';
+
+import 'record_button.dart';
+import 'route_manager.dart';
+import 'flight_map.dart';
+import 'instruments.dart';
+import 'instruments_data_source.dart';
+import 'over_cities_screen.dart';
+import 'navigation_data_source.dart';
+import 'navigation_info.dart';
+import 'settings_screen.dart';
+
+class MapScreen extends StatefulWidget {
+ @override
+ _MapScreenState createState() => _MapScreenState();
+}
+
+class _MapScreenState extends State {
+ InstrumentsDataSource _instrumentsDataSource;
+ RouteManager _routeManager;
+
+ NavigationDataSource _navigationDataSource;
+
+ StreamSubscription _destinationStreamSubscription;
+
+ @override
+ void initState() {
+ super.initState();
+
+ SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]);
+ Wakelock.enable();
+
+ _instrumentsDataSource =
+ InstrumentsDataSource(qnh: 1022.0, surfaceAltitudeInM: 104);
+
+ _routeManager = RouteManager(instrumentsDataSource: _instrumentsDataSource);
+
+ _destinationStreamSubscription =
+ _routeManager.destinationStream.listen((event) {
+ _navigationDataSource?.dispose();
+ _navigationDataSource = NavigationDataSource(
+ destination: event, stream: _instrumentsDataSource.data);
+ setState(() {});
+ });
+ }
+
+ @override
+ void dispose() {
+ _destinationStreamSubscription.cancel();
+ _navigationDataSource?.dispose();
+
+ // The next line disables the wakelock again.
+ Wakelock.disable();
+
+ super.dispose();
+ }
+
+ @override
+ Widget build(BuildContext context) {
+ return Scaffold(
+ backgroundColor: Colors.black,
+ resizeToAvoidBottomInset: false,
+ body: Column(
+ crossAxisAlignment: CrossAxisAlignment.stretch,
+ children: [
+ SizedBox(height: 16.0),
+ Row(
+ mainAxisAlignment: MainAxisAlignment.spaceEvenly,
+ children: [
+ RecordButton(dataSource: _instrumentsDataSource),
+ IconButton(
+ icon: FaIcon(
+ FontAwesomeIcons.city,
+ color: Colors.white,
+ ),
+ tooltip: 'Overflying Cities',
+ onPressed: () {
+ Navigator.push(context,
+ MaterialPageRoute(builder: (BuildContext context) {
+ return OverCitiesScreen();
+ }));
+ },
+ ),
+ IconButton(
+ icon: FaIcon(
+ FontAwesomeIcons.tachometerAlt,
+ color: Colors.white,
+ ),
+ tooltip: 'Quick Calibration',
+ onPressed: () {
+ String val = '';
+ showDialog(
+ context: context,
+ builder: (c) {
+ return AlertDialog(
+ title: Text('Quick altimeter calibration'),
+ content: Column(
+ mainAxisSize: MainAxisSize.min,
+ children: [
+ TextField(
+ decoration: InputDecoration(
+ labelText: 'Field altitude (m)'),
+ keyboardType: TextInputType.number,
+ onChanged: (s) {
+ val = s;
+ },
+ ),
+ SizedBox(height: 8),
+ ElevatedButton(
+ child: Text('Submit'),
+ onPressed: () {
+ print(double.parse(val));
+ _instrumentsDataSource.recalibrateAtSfc(
+ surfaceAltitudeInM: double.parse(val));
+ Navigator.pop(c);
+ },
+ )
+ ],
+ ),
+ );
+ });
+ },
+ ),
+ IconButton(
+ icon: Icon(
+ Icons.navigation,
+ color: Colors.white,
+ ),
+ color: _navigationDataSource != null ? Colors.green : null,
+ tooltip: 'Navigation',
+ onPressed: () {
+ if (_navigationDataSource == null) {
+ _routeManager.startNavigation();
+ } else {
+ _routeManager.stopNavigation();
+ _navigationDataSource?.dispose();
+
+ setState(() {
+ _navigationDataSource = null;
+ });
+ }
+ },
+ ),
+ IconButton(
+ icon: Icon(Icons.settings, color: Colors.white),
+ tooltip: 'Settings',
+ color: _navigationDataSource != null ? Colors.green : null,
+ onPressed: () {
+ Navigator.push(
+ context,
+ MaterialPageRoute(
+ builder: (context) => SettingsScreen()));
+ },
+ )
+ ],
+ ),
+ if (_navigationDataSource != null)
+ StreamBuilder(
+ stream: _navigationDataSource.data,
+ builder:
+ (BuildContext context, AsyncSnapshot snapshot) {
+ switch (snapshot.connectionState) {
+ case ConnectionState.active:
+ return NavigationInfo(data: snapshot.data);
+ break;
+
+ case ConnectionState.none:
+ case ConnectionState.waiting:
+ case ConnectionState.done:
+ default:
+ return Center(
+ child: Text(
+ 'Loading...',
+ style: Theme.of(context).textTheme.headline6,
+ ),
+ );
+ break;
+ }
+ }),
+ Expanded(
+ child: FlightMap(
+ dataStream: _instrumentsDataSource.data,
+ onLongPress: _onLongPress,
+ route: _routeManager.routeRepresentation(),
+ )),
+ StreamBuilder(
+ stream: _instrumentsDataSource.data,
+ builder: (BuildContext context, AsyncSnapshot snapshot) {
+ switch (snapshot.connectionState) {
+ case ConnectionState.active:
+ return Instruments(data: snapshot.data);
+ break;
+
+ case ConnectionState.none:
+ case ConnectionState.waiting:
+ case ConnectionState.done:
+ default:
+ return Center(
+ child: Text(
+ 'Loading...',
+ style: Theme.of(context).textTheme.headline6,
+ ),
+ );
+ break;
+ }
+ }),
+ ],
+ ),
+ );
+ }
+
+ void _onLongPress(LatLng position) {
+ showDialog(
+ context: context,
+ builder: (c) {
+ return SimpleDialog(
+ title: Text(position.toSexagesimal()),
+ children: [
+ SimpleDialogOption(
+ child: const Text('Add to route'),
+ onPressed: () {
+ _routeManager.waypoints.add(position);
+ Navigator.pop(c);
+ setState(() {});
+ },
+ ),
+ if (_routeManager.waypoints.isNotEmpty)
+ SimpleDialogOption(
+ child: const Text('Replace route'),
+ onPressed: () {
+ _routeManager.waypoints = [position];
+ Navigator.pop(c);
+ setState(() {});
+ },
+ ),
+ SimpleDialogOption(
+ child: const Text('Back'),
+ onPressed: () {
+ Navigator.pop(c);
+ setState(() {});
+ },
+ ),
+ ],
+ );
+ });
+ }
+}
diff --git a/lib/navigation_data_source.dart b/lib/navigation_data_source.dart
new file mode 100644
index 0000000..b245d5b
--- /dev/null
+++ b/lib/navigation_data_source.dart
@@ -0,0 +1,57 @@
+import 'dart:async';
+
+import 'package:meta/meta.dart';
+import 'instruments_data_source.dart';
+
+import 'package:latlong/latlong.dart';
+
+class NavigationData {
+ final double distanceInM;
+ final Duration duration;
+ final DateTime eta;
+
+ NavigationData(
+ {@required this.distanceInM,
+ @required this.duration,
+ @required this.eta});
+}
+
+class NavigationDataSource {
+ final StreamController _navigationDataStream =
+ StreamController.broadcast();
+
+ StreamSubscription _subscription;
+ LatLng destination;
+
+ NavigationDataSource(
+ {@required this.destination, @required Stream stream}) {
+ _subscription = stream.listen(_onNewData);
+ }
+
+ void dispose() {
+ _subscription.cancel();
+ }
+
+ Stream get data => _navigationDataStream.stream;
+
+ void _onNewData(InstrumentsData data) {
+ double distanceInM;
+ Duration duration;
+ DateTime eta;
+
+ if (data.position != null) {
+ Distance d = Distance();
+ distanceInM = d.distance(data.position, destination);
+
+ if (data.speedInKmH != null && data.speedInKmH > 5) {
+ duration = Duration(
+ minutes: (distanceInM / 1000 / data.speedInKmH * 60).round());
+
+ eta = DateTime.now().add(duration);
+ }
+ }
+
+ _navigationDataStream.add(
+ NavigationData(duration: duration, eta: eta, distanceInM: distanceInM));
+ }
+}
diff --git a/lib/navigation_info.dart b/lib/navigation_info.dart
new file mode 100644
index 0000000..0677bb5
--- /dev/null
+++ b/lib/navigation_info.dart
@@ -0,0 +1,57 @@
+import 'package:flutter/material.dart';
+
+import 'navigation_data_source.dart';
+
+class NavigationInfo extends StatelessWidget {
+ static const TextStyle commonStyle =
+ TextStyle(fontWeight: FontWeight.bold, fontSize: 30);
+
+ final NavigationData data;
+
+ const NavigationInfo({Key key, @required this.data}) : super(key: key);
+
+ @override
+ Widget build(BuildContext context) {
+ return Container(
+ color: Colors.white,
+ child: Row(
+ mainAxisAlignment: MainAxisAlignment.spaceEvenly,
+ children: [
+ Column(
+ mainAxisSize: MainAxisSize.min,
+ children: [
+ Text('Distance (km)',
+ style: Theme.of(context).textTheme.subtitle2),
+ Text(
+ data.distanceInM != null
+ ? (data.distanceInM / 1000).toStringAsFixed(1)
+ : '???',
+ style: commonStyle),
+ ],
+ ),
+ Column(
+ mainAxisSize: MainAxisSize.min,
+ children: [
+ Text('Duration', style: Theme.of(context).textTheme.subtitle2),
+ Text(
+ data.duration != null
+ ? '${data.duration.inHours}h${data.duration.inMinutes % 60}'
+ : '???',
+ style: commonStyle),
+ ],
+ ),
+ Column(
+ mainAxisSize: MainAxisSize.min,
+ children: [
+ Text('ETA', style: Theme.of(context).textTheme.subtitle2),
+ Text(
+ data.eta != null
+ ? '${data.eta.hour}:${data.eta.minute}'
+ : '???',
+ style: commonStyle),
+ ],
+ ),
+ ],
+ ));
+ }
+}
diff --git a/lib/over_cities_screen.dart b/lib/over_cities_screen.dart
new file mode 100644
index 0000000..328276b
--- /dev/null
+++ b/lib/over_cities_screen.dart
@@ -0,0 +1,19 @@
+import 'package:flutter/material.dart';
+
+class OverCitiesScreen extends StatefulWidget {
+ @override
+ _OverCitiesScreenState createState() => _OverCitiesScreenState();
+}
+
+class _OverCitiesScreenState extends State {
+ @override
+ Widget build(BuildContext context) {
+ return Scaffold(
+ appBar: AppBar(
+ title: Text('Overflying cities'),
+ ),
+ body: Center(
+ child: Image.asset('assets/survol.png'),
+ ));
+ }
+}
diff --git a/lib/preset_layers.dart b/lib/preset_layers.dart
new file mode 100644
index 0000000..0ff4292
--- /dev/null
+++ b/lib/preset_layers.dart
@@ -0,0 +1,37 @@
+import 'package:flutter_map/flutter_map.dart';
+
+import 'package:nofussppg/user_agent_tile_provider.dart';
+import 'package:path_provider/path_provider.dart';
+import 'package:flutter_cache_manager/flutter_cache_manager.dart';
+import 'package:path/path.dart' as p;
+
+class LongTermCacheManager extends BaseCacheManager {
+ static const key = 'libCachedImageDataLongTerm';
+
+ static LongTermCacheManager _instance;
+
+ factory LongTermCacheManager() {
+ _instance ??= LongTermCacheManager._();
+ return _instance;
+ }
+
+ LongTermCacheManager._() : super(key);
+
+ @override
+ Future getFilePath() async {
+ var directory = (await getExternalCacheDirectories())[0];
+ return p.join(directory.path, key);
+ }
+}
+
+class PresetLayers {
+
+
+ static TileLayerOptions oaciVfrFrance = TileLayerOptions(
+ opacity: 0.5,
+ urlTemplate:
+ "https://wxs.ign.fr/an7nvfzojv5wa96dsga5nk8w/geoportail/wmts?layer=GEOGRAPHICALGRIDSYSTEMS.MAPS.SCAN-OACI&style=normal&tilematrixset=PM&Service=WMTS&Request=GetTile&Version=1.0.0&Format=image%2Fjpeg&TileMatrix={z}&TileCol={x}&TileRow={y}",
+ tileProvider: UserAgentTileProvider(),
+ minNativeZoom: 8,
+ maxNativeZoom: 11);
+}
diff --git a/lib/record_button.dart b/lib/record_button.dart
new file mode 100644
index 0000000..6bd47f9
--- /dev/null
+++ b/lib/record_button.dart
@@ -0,0 +1,78 @@
+import 'dart:async';
+import 'dart:io';
+
+import 'package:flutter/material.dart';
+import 'package:path_provider/path_provider.dart';
+
+import 'flight_recorder.dart';
+import 'instruments_data_source.dart';
+
+class RecordButton extends StatefulWidget {
+ final InstrumentsDataSource dataSource;
+
+ const RecordButton({Key key, @required this.dataSource}) : super(key: key);
+
+ @override
+ _RecordButtonState createState() => _RecordButtonState();
+}
+
+class _RecordButtonState extends State {
+ bool _isRecording = false;
+ StreamSubscription _recorderSubscription;
+ FlightRecorder _flightRecorder;
+
+ @override
+ void dispose() {
+ _isRecording = false;
+ _recorderSubscription?.cancel();
+ _flightRecorder?.dispose();
+
+ super.dispose();
+ }
+
+ @override
+ Widget build(BuildContext context) {
+ return IconButton(
+ icon: Icon(
+ _isRecording ? Icons.stop : Icons.fiber_manual_record,
+ color: _isRecording ? Colors.red : Colors.white,
+ ),
+ tooltip: 'Record Flight',
+ onPressed: () {
+ _toggleRecording();
+ },
+ );
+ }
+
+ void _toggleRecording() {
+ if (_isRecording) {
+ setState(() {
+ _isRecording = false;
+ });
+ _recorderSubscription.cancel();
+ _recorderSubscription = null;
+ _flightRecorder.dispose();
+ _flightRecorder = null;
+ } else {
+ getExternalStorageDirectory().then((value) {
+ DateTime now = DateTime.now();
+ String path =
+ '${value.path}/${now.year}-${now.month}-${now.day}_${now.hour}-${now.minute}.csv';
+
+ File outputFile = File(path);
+
+ if (!outputFile.existsSync()) {
+ _flightRecorder = FlightRecorder(outputFile);
+
+ setState(() {
+ _isRecording = true;
+ });
+
+ _recorderSubscription = widget.dataSource.data.listen((event) {
+ _flightRecorder.appendData(event);
+ });
+ }
+ });
+ }
+ }
+}
diff --git a/lib/route_editor.dart b/lib/route_editor.dart
new file mode 100644
index 0000000..633fd12
--- /dev/null
+++ b/lib/route_editor.dart
@@ -0,0 +1,89 @@
+import 'package:flutter/material.dart';
+import 'package:latlong/latlong.dart';
+
+class RouteEditor extends StatefulWidget {
+ final List waypoints;
+
+ const RouteEditor({Key key, this.waypoints}) : super(key: key);
+
+ @override
+ _RouteEditorState createState() => _RouteEditorState();
+}
+
+class _RouteEditorState extends State {
+ @override
+ Widget build(BuildContext context) {
+ return Scaffold(
+ appBar: AppBar(
+ title: Text('Waypoints'),
+ ),
+ body: ReorderableListView(
+ header: Text(
+ 'Total length: ${(_tripLengthInM() / 1000).toStringAsFixed(1)} km',
+ style: Theme.of(context).textTheme.headline4,
+ ),
+ onReorder: (int oldIndex, int newIndex) {},
+ children: _tiles(),
+ ),
+ );
+ }
+
+ double _tripLengthInM() {
+ double length = 0;
+ LatLng from;
+ Distance d = Distance();
+
+ widget.waypoints.forEach((waypoint) {
+ if (from != null) {
+ length += d.distance(from, waypoint);
+ }
+
+ from = waypoint;
+ });
+
+ return length;
+ }
+
+ List _legDistancesInM() {
+ List distances = [0];
+ LatLng from;
+ Distance d = Distance();
+
+ widget.waypoints.forEach((waypoint) {
+ if (from != null) {
+ distances.add(d.distance(from, waypoint));
+ }
+
+ from = waypoint;
+ });
+
+ return distances;
+ }
+
+ List _tiles() {
+ return widget.waypoints
+ .asMap()
+ .entries
+ .map((e) => ListTile(
+ key: ValueKey(e.value),
+ title: Text(
+ e.value.toSexagesimal(),
+ style: TextStyle(fontSize: 12),
+ ),
+ subtitle: Text(
+ 'From previous point: ${(_legDistancesInM()[e.key] / 1000).toStringAsFixed(1)} km'),
+ leading: Text((e.key + 1).toString()),
+ trailing: Row(
+ mainAxisSize: MainAxisSize.min,
+ children: [
+ IconButton(
+ icon: Icon(Icons.remove),
+ onPressed: () {},
+ ),
+ Icon(Icons.reorder)
+ ],
+ ),
+ ))
+ .toList();
+ }
+}
diff --git a/lib/route_manager.dart b/lib/route_manager.dart
new file mode 100644
index 0000000..477492f
--- /dev/null
+++ b/lib/route_manager.dart
@@ -0,0 +1,63 @@
+import 'dart:async';
+
+import 'package:meta/meta.dart';
+import 'package:flutter_map/flutter_map.dart';
+import 'package:latlong/latlong.dart';
+import 'package:nofussppg/instruments_data_source.dart';
+
+class RouteManager {
+ List waypoints = [];
+ StreamController _destinationStream = StreamController.broadcast();
+ final InstrumentsDataSource instrumentsDataSource;
+ StreamSubscription _instrumentsDataSubscription;
+ int _destinationIndex = 0;
+ bool _navigationStarted = false;
+
+ RouteManager({@required this.instrumentsDataSource}) {
+ _instrumentsDataSubscription =
+ instrumentsDataSource.data.listen(_onInstrumentsData);
+ }
+
+ void dispose() {
+ _instrumentsDataSubscription.cancel();
+ _destinationStream.close();
+ }
+
+ Stream get destinationStream => _destinationStream.stream;
+
+ Polyline routeRepresentation() {
+ if (instrumentsDataSource.lastPosition != null) {
+ return Polyline(
+ points: [instrumentsDataSource.lastPosition] + waypoints,
+ strokeWidth: 3);
+ } else {
+ return Polyline(points: waypoints, strokeWidth: 3);
+ }
+ }
+
+ void startNavigation() {
+ if (!_navigationStarted && waypoints.isNotEmpty) {
+ _navigationStarted = true;
+ _destinationIndex = 0;
+ _destinationStream.add(waypoints[_destinationIndex]);
+ }
+ }
+
+ void stopNavigation() {
+ if (_navigationStarted) {
+ _navigationStarted = false;
+ }
+ }
+
+ void _onInstrumentsData(InstrumentsData data) {
+ if (_navigationStarted && waypoints.isNotEmpty && data.position != null) {
+ Distance d = Distance();
+ double distanceInM =
+ d.distance(data.position, waypoints[_destinationIndex]);
+
+ if (distanceInM < 20 && waypoints.length > _destinationIndex + 1) {
+ _destinationStream.add(waypoints[++_destinationIndex]);
+ }
+ }
+ }
+}
diff --git a/lib/settings_screen.dart b/lib/settings_screen.dart
new file mode 100644
index 0000000..b64ff98
--- /dev/null
+++ b/lib/settings_screen.dart
@@ -0,0 +1,15 @@
+import 'package:flutter/material.dart';
+
+class SettingsScreen extends StatefulWidget {
+ @override
+ _SettingsScreenState createState() => _SettingsScreenState();
+}
+
+class _SettingsScreenState extends State {
+ @override
+ Widget build(BuildContext context) {
+ return Scaffold(
+ appBar: AppBar(title: Text('Settings')),
+ );
+ }
+}
diff --git a/lib/standard_atmosphere.dart b/lib/standard_atmosphere.dart
new file mode 100644
index 0000000..adddb2f
--- /dev/null
+++ b/lib/standard_atmosphere.dart
@@ -0,0 +1,19 @@
+import 'dart:math';
+
+import 'package:meta/meta.dart';
+
+// https://fr.wikipedia.org/wiki/Atmosph%C3%A8re_normalis%C3%A9e
+
+class StandardAtmosphere {
+ static double altitude({@required double pressure, @required double qnh}) {
+ return (1 - pow((pressure / qnh), 1 / 5.255)) * 288.15 / 0.0065;
+ }
+
+ static double qnh({@required double pressure, @required double altitude}) {
+ return pressure / pow((1 - 0.0065 * altitude / 288.15), 5.255);
+ }
+
+ static double feetFromMeters(double meters) {
+ return meters * 3.2808;
+ }
+}
diff --git a/lib/user_agent_tile_provider.dart b/lib/user_agent_tile_provider.dart
new file mode 100644
index 0000000..7995439
--- /dev/null
+++ b/lib/user_agent_tile_provider.dart
@@ -0,0 +1,18 @@
+import 'package:flutter/widgets.dart';
+import 'package:flutter_map/flutter_map.dart';
+import 'package:cached_network_image/cached_network_image.dart';
+import 'package:nofussppg/preset_layers.dart';
+
+export 'package:flutter_map/src/layer/tile_provider/mbtiles_image_provider.dart';
+
+class UserAgentTileProvider extends TileProvider {
+ @override
+ ImageProvider