├── .github └── FUNDING.yml ├── .gitignore ├── AudiPoi.sln ├── AudiPoiDatabase ├── .gitignore ├── App.config ├── AudiPoiDatabase.csproj ├── AudiPoiDatabase.sln ├── AudiPoiDatabase.snk ├── Mike Caddy.pfx ├── PointOfInterest.cs ├── PointOfInterestCategory.cs ├── PointOfInterestDatabase.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx └── Resources │ ├── stacking_2.png │ └── stacking_3.png ├── CNAME ├── GeocacheToPoi ├── .gitignore ├── App.config ├── CustomDictionary.xml ├── GeocacheToPoi.csproj ├── GeocacheToPoi.snk ├── GlobalSuppressions.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Mike Caddy.pfx ├── MyRules.ruleset ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Settings.StyleCop ├── geocaching.ico └── refresh.png ├── Geocaching ├── GPX.cs ├── Geocaching.csproj ├── LetterboxIcon.png ├── Mike Caddy.pfx ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── app.config ├── earthcacheIcon.png ├── multiIcon.png ├── mysteryIcon.png ├── traditionalIcon.png ├── virtualIcon.png ├── webcamIcon.png └── wherigoIcon.png ├── Logging ├── .gitignore ├── GetAccessToken.cs ├── GlobalSuppressions.cs ├── LogEvent.cs ├── LoggingBackend.csproj ├── Properties │ └── PublishProfiles │ │ └── MCLogging - Zip Deploy.pubxml └── host.json ├── POIBuilder ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── POIBuilder.csproj └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── POILoaderBackend ├── .gitignore ├── Categories.cs ├── CategoryEnum.cs ├── CategoryImages.cs ├── GlobalSuppressions.cs ├── POILoaderBackend.csproj ├── POIs.cs ├── Properties │ ├── PublishProfiles │ │ └── POILoaderBackend - Zip Deploy.pubxml │ ├── Resources.Designer.cs │ └── Resources.resx └── host.json ├── PocketGpsWorld ├── .gitignore ├── CameraSettings.cs ├── CookieAwareWebClient.cs ├── CustomDictionary.xml ├── Mike Caddy.pfx ├── PocketGpsWorld.csproj ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── Fixed.png │ ├── Mobile.png │ ├── PMobile.png │ ├── Red Light.png │ └── Specs.png ├── Settings.StyleCop ├── SpeedCameras.cs ├── app.config └── enums │ ├── CameraCategory.cs │ └── CameraType.cs ├── README.md ├── Releases ├── GeocacheToPoi │ ├── GeocacheToPoi_v0.9.1.zip │ └── v0.9.zip ├── GeocacheToPoi_v0.9.2.zip ├── POIBuilder │ └── POIBuilder_v0.9.0.zip ├── POIBuilder_v0.9.1.zip ├── SpeedCameraToPoi │ ├── SpeedCameraToPoi_v0.9.3.zip │ ├── v0.9.1.zip │ ├── v0.9.2.zip │ └── v0.9.zip └── SpeedCameraToPoi_v0.9.4.zip ├── Shared ├── .gitignore ├── Azure.cs ├── Config.cs ├── DirectoryUtilities.cs ├── ExtensionMethods.cs ├── LoggingClient.cs ├── Mike Caddy.pfx ├── Properties │ ├── AssemblyInfo.cs │ ├── Settings.Designer.cs │ └── Settings.settings ├── SecureStrings.cs ├── Shared.csproj ├── Shared.sln ├── Shared.snk ├── UIUtils.cs ├── app.config └── config.json ├── SpeedCameraToPoi ├── .gitignore ├── App.xaml ├── App.xaml.cs ├── CustomDictionary.xml ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Mike Caddy.pfx ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Settings.StyleCop ├── SpeedCameraToPoi.csproj ├── app.config └── packages.config └── _config.yml /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: mcaddy 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry 13 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 14 | -------------------------------------------------------------------------------- /AudiPoi.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29009.5 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AudiPoiDatabase", "AudiPoiDatabase\AudiPoiDatabase.csproj", "{CFD0425C-CBCC-45C5-9009-B5D025826FE2}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Shared", "Shared\Shared.csproj", "{34069ED0-63D0-47F7-A1EC-F9B621508629}" 9 | EndProject 10 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GeocacheToPoi", "GeocacheToPoi\GeocacheToPoi.csproj", "{A0BB16B4-79B3-4232-9D06-E56301394325}" 11 | EndProject 12 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpeedCameraToPoi", "SpeedCameraToPoi\SpeedCameraToPoi.csproj", "{F76D366B-0B0E-46CF-B58E-B8747D7DDD4D}" 13 | EndProject 14 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PocketGpsWorld", "PocketGpsWorld\PocketGpsWorld.csproj", "{8317B549-6985-41EE-B06C-81F90E351960}" 15 | EndProject 16 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Geocaching", "Geocaching\Geocaching.csproj", "{DBCA422B-F0C4-4AAD-A678-B89802A53BF9}" 17 | EndProject 18 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LoggingBackend", "Logging\LoggingBackend.csproj", "{09562072-EBF6-48F7-9734-46D8B1725ABC}" 19 | EndProject 20 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "POILoaderBackend", "POILoaderBackend\POILoaderBackend.csproj", "{3E5B43F9-FE07-4484-BCD3-4D6F6C5FD59B}" 21 | EndProject 22 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Azure Functions", "Azure Functions", "{5E05172D-5C8B-450E-B5C5-074A4BFA916F}" 23 | EndProject 24 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Libraries", "Libraries", "{6F13CAC5-BE78-419E-809F-BE46E8159A59}" 25 | EndProject 26 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "POIBuilder", "POIBuilder\POIBuilder.csproj", "{4425B76F-E29D-49F9-9E7B-4CA00C6B0F49}" 27 | EndProject 28 | Global 29 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 30 | Debug|Any CPU = Debug|Any CPU 31 | Release|Any CPU = Release|Any CPU 32 | EndGlobalSection 33 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 34 | {CFD0425C-CBCC-45C5-9009-B5D025826FE2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 35 | {CFD0425C-CBCC-45C5-9009-B5D025826FE2}.Debug|Any CPU.Build.0 = Debug|Any CPU 36 | {CFD0425C-CBCC-45C5-9009-B5D025826FE2}.Release|Any CPU.ActiveCfg = Release|Any CPU 37 | {CFD0425C-CBCC-45C5-9009-B5D025826FE2}.Release|Any CPU.Build.0 = Release|Any CPU 38 | {34069ED0-63D0-47F7-A1EC-F9B621508629}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 39 | {34069ED0-63D0-47F7-A1EC-F9B621508629}.Debug|Any CPU.Build.0 = Debug|Any CPU 40 | {34069ED0-63D0-47F7-A1EC-F9B621508629}.Release|Any CPU.ActiveCfg = Release|Any CPU 41 | {34069ED0-63D0-47F7-A1EC-F9B621508629}.Release|Any CPU.Build.0 = Release|Any CPU 42 | {A0BB16B4-79B3-4232-9D06-E56301394325}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 43 | {A0BB16B4-79B3-4232-9D06-E56301394325}.Debug|Any CPU.Build.0 = Debug|Any CPU 44 | {A0BB16B4-79B3-4232-9D06-E56301394325}.Release|Any CPU.ActiveCfg = Release|Any CPU 45 | {A0BB16B4-79B3-4232-9D06-E56301394325}.Release|Any CPU.Build.0 = Release|Any CPU 46 | {F76D366B-0B0E-46CF-B58E-B8747D7DDD4D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 47 | {F76D366B-0B0E-46CF-B58E-B8747D7DDD4D}.Debug|Any CPU.Build.0 = Debug|Any CPU 48 | {F76D366B-0B0E-46CF-B58E-B8747D7DDD4D}.Release|Any CPU.ActiveCfg = Release|Any CPU 49 | {F76D366B-0B0E-46CF-B58E-B8747D7DDD4D}.Release|Any CPU.Build.0 = Release|Any CPU 50 | {8317B549-6985-41EE-B06C-81F90E351960}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 51 | {8317B549-6985-41EE-B06C-81F90E351960}.Debug|Any CPU.Build.0 = Debug|Any CPU 52 | {8317B549-6985-41EE-B06C-81F90E351960}.Release|Any CPU.ActiveCfg = Release|Any CPU 53 | {8317B549-6985-41EE-B06C-81F90E351960}.Release|Any CPU.Build.0 = Release|Any CPU 54 | {DBCA422B-F0C4-4AAD-A678-B89802A53BF9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 55 | {DBCA422B-F0C4-4AAD-A678-B89802A53BF9}.Debug|Any CPU.Build.0 = Debug|Any CPU 56 | {DBCA422B-F0C4-4AAD-A678-B89802A53BF9}.Release|Any CPU.ActiveCfg = Release|Any CPU 57 | {DBCA422B-F0C4-4AAD-A678-B89802A53BF9}.Release|Any CPU.Build.0 = Release|Any CPU 58 | {09562072-EBF6-48F7-9734-46D8B1725ABC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 59 | {09562072-EBF6-48F7-9734-46D8B1725ABC}.Debug|Any CPU.Build.0 = Debug|Any CPU 60 | {09562072-EBF6-48F7-9734-46D8B1725ABC}.Release|Any CPU.ActiveCfg = Release|Any CPU 61 | {09562072-EBF6-48F7-9734-46D8B1725ABC}.Release|Any CPU.Build.0 = Release|Any CPU 62 | {3E5B43F9-FE07-4484-BCD3-4D6F6C5FD59B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 63 | {3E5B43F9-FE07-4484-BCD3-4D6F6C5FD59B}.Debug|Any CPU.Build.0 = Debug|Any CPU 64 | {3E5B43F9-FE07-4484-BCD3-4D6F6C5FD59B}.Release|Any CPU.ActiveCfg = Release|Any CPU 65 | {3E5B43F9-FE07-4484-BCD3-4D6F6C5FD59B}.Release|Any CPU.Build.0 = Release|Any CPU 66 | {4425B76F-E29D-49F9-9E7B-4CA00C6B0F49}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 67 | {4425B76F-E29D-49F9-9E7B-4CA00C6B0F49}.Debug|Any CPU.Build.0 = Debug|Any CPU 68 | {4425B76F-E29D-49F9-9E7B-4CA00C6B0F49}.Release|Any CPU.ActiveCfg = Release|Any CPU 69 | {4425B76F-E29D-49F9-9E7B-4CA00C6B0F49}.Release|Any CPU.Build.0 = Release|Any CPU 70 | EndGlobalSection 71 | GlobalSection(SolutionProperties) = preSolution 72 | HideSolutionNode = FALSE 73 | EndGlobalSection 74 | GlobalSection(NestedProjects) = preSolution 75 | {CFD0425C-CBCC-45C5-9009-B5D025826FE2} = {6F13CAC5-BE78-419E-809F-BE46E8159A59} 76 | {34069ED0-63D0-47F7-A1EC-F9B621508629} = {6F13CAC5-BE78-419E-809F-BE46E8159A59} 77 | {8317B549-6985-41EE-B06C-81F90E351960} = {6F13CAC5-BE78-419E-809F-BE46E8159A59} 78 | {DBCA422B-F0C4-4AAD-A678-B89802A53BF9} = {6F13CAC5-BE78-419E-809F-BE46E8159A59} 79 | {09562072-EBF6-48F7-9734-46D8B1725ABC} = {5E05172D-5C8B-450E-B5C5-074A4BFA916F} 80 | {3E5B43F9-FE07-4484-BCD3-4D6F6C5FD59B} = {5E05172D-5C8B-450E-B5C5-074A4BFA916F} 81 | EndGlobalSection 82 | GlobalSection(ExtensibilityGlobals) = postSolution 83 | SolutionGuid = {E6F1DC6E-C953-4341-BEC0-DE29D5DA63A7} 84 | EndGlobalSection 85 | EndGlobal 86 | -------------------------------------------------------------------------------- /AudiPoiDatabase/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /AudiPoiDatabase/AudiPoiDatabase.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | Debug 7 | AnyCPU 8 | {CFD0425C-CBCC-45C5-9009-B5D025826FE2} 9 | Library 10 | Properties 11 | Mcaddy.AudiPoiDatabase 12 | Mcaddy.AudiPoiDatabase 13 | v4.8 14 | 512 15 | 16 | 17 | 18 | 19 | 20 | true 21 | full 22 | false 23 | bin\Debug\ 24 | DEBUG;TRACE 25 | prompt 26 | 4 27 | AnyCPU 28 | 29 | 30 | pdbonly 31 | true 32 | bin\Release\ 33 | TRACE 34 | prompt 35 | 4 36 | 37 | 38 | true 39 | 40 | 41 | Mike Caddy.pfx 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | True 62 | True 63 | Resources.resx 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | ResXFileCodeGenerator 74 | Resources.Designer.cs 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | {34069ed0-63d0-47f7-a1ec-f9b621508629} 86 | Shared 87 | 88 | 89 | 90 | 91 | 1.0.116 92 | 93 | 94 | 95 | 96 | 97 | 98 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 113 | -------------------------------------------------------------------------------- /AudiPoiDatabase/AudiPoiDatabase.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AudiPoiDatabase", "AudiPoiDatabase.csproj", "{CFD0425C-CBCC-45C5-9009-B5D025826FE2}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Shared", "..\Shared\Shared.csproj", "{34069ED0-63D0-47F7-A1EC-F9B621508629}" 9 | EndProject 10 | Global 11 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 12 | Debug|Any CPU = Debug|Any CPU 13 | Release|Any CPU = Release|Any CPU 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {CFD0425C-CBCC-45C5-9009-B5D025826FE2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 17 | {CFD0425C-CBCC-45C5-9009-B5D025826FE2}.Debug|Any CPU.Build.0 = Debug|Any CPU 18 | {CFD0425C-CBCC-45C5-9009-B5D025826FE2}.Release|Any CPU.ActiveCfg = Release|Any CPU 19 | {CFD0425C-CBCC-45C5-9009-B5D025826FE2}.Release|Any CPU.Build.0 = Release|Any CPU 20 | {34069ED0-63D0-47F7-A1EC-F9B621508629}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 21 | {34069ED0-63D0-47F7-A1EC-F9B621508629}.Debug|Any CPU.Build.0 = Debug|Any CPU 22 | {34069ED0-63D0-47F7-A1EC-F9B621508629}.Release|Any CPU.ActiveCfg = Release|Any CPU 23 | {34069ED0-63D0-47F7-A1EC-F9B621508629}.Release|Any CPU.Build.0 = Release|Any CPU 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | EndGlobal 29 | -------------------------------------------------------------------------------- /AudiPoiDatabase/AudiPoiDatabase.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaddy/audipoi/cf43be99d26c666117b0fdf63c955afabd2f7be8/AudiPoiDatabase/AudiPoiDatabase.snk -------------------------------------------------------------------------------- /AudiPoiDatabase/Mike Caddy.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaddy/audipoi/cf43be99d26c666117b0fdf63c955afabd2f7be8/AudiPoiDatabase/Mike Caddy.pfx -------------------------------------------------------------------------------- /AudiPoiDatabase/PointOfInterest.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // All rights reserved 4 | // 5 | //----------------------------------------------------------------------- 6 | namespace Mcaddy.AudiPoiDatabase 7 | { 8 | using System; 9 | using System.Collections.Generic; 10 | using System.Linq; 11 | using System.Text; 12 | 13 | /// 14 | /// Point of Interest Class 15 | /// 16 | public class PointOfInterest 17 | { 18 | /// 19 | /// Gets or sets the Latitude of the Poi 20 | /// 21 | public double Latitude { get; set; } 22 | 23 | /// 24 | /// Gets or sets the Longitude of the Poi 25 | /// 26 | public double Longitude { get; set; } 27 | 28 | /// 29 | /// Gets or sets the Name of the Poi 30 | /// 31 | public string Name { get; set; } 32 | 33 | /// 34 | /// Gets or sets the House Number of the Poi 35 | /// 36 | public string HouseNumber { get; set; } 37 | 38 | /// 39 | /// Gets or sets the Street of the Poi 40 | /// 41 | public string Street { get; set; } 42 | 43 | /// 44 | /// Gets or sets the City of the Poi 45 | /// 46 | public string City { get; set; } 47 | 48 | /// 49 | /// Gets or sets the Phone of the Poi 50 | /// 51 | public string Phone { get; set; } 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /AudiPoiDatabase/PointOfInterestCategory.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // All rights reserved 4 | // 5 | //----------------------------------------------------------------------- 6 | namespace Mcaddy.AudiPoiDatabase 7 | { 8 | using System.Collections.ObjectModel; 9 | using System.Drawing; 10 | 11 | /// 12 | /// Poi Category 13 | /// 14 | public class PointOfInterestCategory 15 | { 16 | /// 17 | /// Initializes a new instance of the class. 18 | /// 19 | /// Id for new POI Category 20 | /// name for new POI Category 21 | /// Icon for new POI Category 22 | public PointOfInterestCategory(int id, string name, Bitmap icon) 23 | { 24 | this.Id = id; 25 | this.Name = name; 26 | this.Icon = icon; 27 | this.Items = new Collection(); 28 | } 29 | 30 | /// 31 | /// Gets or sets the Category Id 32 | /// 33 | public int Id { get; set; } 34 | 35 | /// 36 | /// Gets or sets the Category Name 37 | /// 38 | public string Name { get; set; } 39 | 40 | /// 41 | /// Gets or sets the Category Icon 42 | /// 43 | public Bitmap Icon { get; set; } 44 | 45 | /// 46 | /// Gets the Items for the Point of Interest category 47 | /// 48 | public Collection Items { get; private set; } 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /AudiPoiDatabase/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // All rights reserved 4 | // 5 | //----------------------------------------------------------------------- 6 | 7 | using System.Reflection; 8 | using System.Runtime.CompilerServices; 9 | using System.Runtime.InteropServices; 10 | 11 | // General Information about an assembly is controlled through the following 12 | // set of attributes. Change these attribute values to modify the information 13 | // associated with an assembly. 14 | [assembly: AssemblyTitle("AudiPoiDatabase")] 15 | [assembly: AssemblyDescription("")] 16 | [assembly: AssemblyConfiguration("")] 17 | [assembly: AssemblyCompany("")] 18 | [assembly: AssemblyProduct("AudiPoiDatabase")] 19 | [assembly: AssemblyCopyright("Copyright © 2015")] 20 | [assembly: AssemblyTrademark("")] 21 | [assembly: AssemblyCulture("")] 22 | 23 | // Setting ComVisible to false makes the types in this assembly not visible 24 | // to COM components. If you need to access a type in this assembly from 25 | // COM, set the ComVisible attribute to true on that type. 26 | [assembly: ComVisible(false)] 27 | 28 | // The following GUID is for the ID of the typelib if this project is exposed to COM 29 | [assembly: Guid("cfd0425c-cbcc-45c5-9009-b5d025826fe2")] 30 | 31 | // Version information for an assembly consists of the following four values: 32 | // 33 | // Major Version 34 | // Minor Version 35 | // Build Number 36 | // Revision 37 | // 38 | // You can specify all the values or you can default the Build and Revision Numbers 39 | // by using the '*' as shown below: 40 | // [assembly: AssemblyVersion("1.0.*")] 41 | [assembly: AssemblyVersion("1.0.0.0")] 42 | [assembly: AssemblyFileVersion("1.0.0.0")] 43 | -------------------------------------------------------------------------------- /AudiPoiDatabase/Resources/stacking_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaddy/audipoi/cf43be99d26c666117b0fdf63c955afabd2f7be8/AudiPoiDatabase/Resources/stacking_2.png -------------------------------------------------------------------------------- /AudiPoiDatabase/Resources/stacking_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaddy/audipoi/cf43be99d26c666117b0fdf63c955afabd2f7be8/AudiPoiDatabase/Resources/stacking_3.png -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | git.mcaddy.co.uk -------------------------------------------------------------------------------- /GeocacheToPoi/.gitignore: -------------------------------------------------------------------------------- 1 | bin/* 2 | packages/* 3 | obj/* 4 | -------------------------------------------------------------------------------- /GeocacheToPoi/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 |
6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | True 31 | 32 | 33 | True 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /GeocacheToPoi/CustomDictionary.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | mcaddy 8 | Gpx 9 | Metainfo 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /GeocacheToPoi/GeocacheToPoi.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaddy/audipoi/cf43be99d26c666117b0fdf63c955afabd2f7be8/GeocacheToPoi/GeocacheToPoi.snk -------------------------------------------------------------------------------- /GeocacheToPoi/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaddy/audipoi/cf43be99d26c666117b0fdf63c955afabd2f7be8/GeocacheToPoi/GlobalSuppressions.cs -------------------------------------------------------------------------------- /GeocacheToPoi/Mike Caddy.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaddy/audipoi/cf43be99d26c666117b0fdf63c955afabd2f7be8/GeocacheToPoi/Mike Caddy.pfx -------------------------------------------------------------------------------- /GeocacheToPoi/MyRules.ruleset: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /GeocacheToPoi/Program.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // All rights reserved 4 | // 5 | //----------------------------------------------------------------------- 6 | namespace Mcaddy.Audi 7 | { 8 | using System; 9 | using System.Globalization; 10 | using System.Windows.Forms; 11 | 12 | /// 13 | /// Audi POI Exporter 14 | /// 15 | public static class Program 16 | { 17 | /// 18 | /// Have we been asked to auto process 19 | /// 20 | private static bool auto = false; 21 | 22 | /// 23 | /// The Target Drive Passed on the command line 24 | /// 25 | private static string targetDrive = string.Empty; 26 | 27 | /// 28 | /// The GpxPath passed on the command line 29 | /// 30 | private static string gpxPath = string.Empty; 31 | 32 | /// 33 | /// Gets a value indicating whether we've been requested to auto download 34 | /// 35 | public static bool Auto { get => auto; private set => auto = value; } 36 | 37 | /// 38 | /// Gets the Target Drive passed on the command line 39 | /// 40 | public static string TargetDrive { get => targetDrive; private set => targetDrive = value; } 41 | 42 | /// 43 | /// Gets the GPX Path passed on the command line 44 | /// 45 | public static string GpxPath { get => gpxPath; private set => gpxPath = value; } 46 | 47 | /// 48 | /// The main entry point for the application. 49 | /// 50 | /// Command Line Arguments 51 | [STAThread] 52 | private static void Main(string[] args) 53 | { 54 | Application.EnableVisualStyles(); 55 | Application.SetCompatibleTextRenderingDefault(false); 56 | 57 | // Parse Command Line 58 | for (int i = 0; i < args.Length; i++) 59 | { 60 | switch (args[i].ToLower(CultureInfo.CurrentCulture)) 61 | { 62 | case "-auto": 63 | Auto = true; 64 | break; 65 | case "-target": 66 | if (args.Length > (i + 1)) 67 | { 68 | TargetDrive = args[i + 1].ToUpper(); 69 | } 70 | 71 | break; 72 | case "-gpxpath": 73 | if (args.Length > (i + 1)) 74 | { 75 | GpxPath = args[i + 1]; 76 | } 77 | 78 | break; 79 | default: 80 | break; 81 | } 82 | } 83 | 84 | Application.Run(new MainForm()); 85 | } 86 | } 87 | } 88 | -------------------------------------------------------------------------------- /GeocacheToPoi/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // All rights reserved 4 | // 5 | //----------------------------------------------------------------------- 6 | using System; 7 | using System.Reflection; 8 | using System.Resources; 9 | using System.Runtime.CompilerServices; 10 | using System.Runtime.InteropServices; 11 | 12 | // General Information about an assembly is controlled through the following 13 | // set of attributes. Change these attribute values to modify the information 14 | // associated with an assembly. 15 | [assembly: AssemblyTitle("Geocache to Audi Poi Utility")] 16 | [assembly: AssemblyDescription("")] 17 | [assembly: AssemblyConfiguration("")] 18 | [assembly: AssemblyCompany("mcaddy")] 19 | [assembly: AssemblyProduct("GeocacheToPoi")] 20 | [assembly: AssemblyCopyright("Copyright © 2019")] 21 | [assembly: AssemblyTrademark("")] 22 | [assembly: AssemblyCulture("")] 23 | [assembly: CLSCompliant(true)] 24 | [assembly: NeutralResourcesLanguage("en-GB")] 25 | 26 | // Setting ComVisible to false makes the types in this assembly not visible 27 | // to COM components. If you need to access a type in this assembly from 28 | // COM, set the ComVisible attribute to true on that type. 29 | [assembly: ComVisible(false)] 30 | 31 | // The following GUID is for the ID of the typelib if this project is exposed to COM 32 | [assembly: Guid("a0e6f837-6ab2-4d88-9f19-a9410bc71264")] 33 | 34 | // Version information for an assembly consists of the following four values: 35 | // 36 | // Major Version 37 | // Minor Version 38 | // Build Number 39 | // Revision 40 | // 41 | // You can specify all the values or you can default the Build and Revision Numbers 42 | // by using the '*' as shown below: 43 | // [assembly: AssemblyVersion("1.0.*")] 44 | [assembly: AssemblyVersion("0.9.2.0")] 45 | [assembly: AssemblyFileVersion("0.9.2.0")] 46 | -------------------------------------------------------------------------------- /GeocacheToPoi/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Mcaddy.GeocacheToPoi.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Returns the cached ResourceManager instance used by this class. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Mcaddy.GeocacheToPoi.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Overrides the current thread's CurrentUICulture property for all 51 | /// resource lookups using this strongly typed resource class. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | 63 | /// 64 | /// Looks up a localized string similar to {0} waypoints loaded!. 65 | /// 66 | internal static string CompletionFormatString { 67 | get { 68 | return ResourceManager.GetString("CompletionFormatString", resourceCulture); 69 | } 70 | } 71 | 72 | /// 73 | /// Looks up a localized string similar to Done!. 74 | /// 75 | internal static string CompletionTitle { 76 | get { 77 | return ResourceManager.GetString("CompletionTitle", resourceCulture); 78 | } 79 | } 80 | 81 | /// 82 | /// Looks up a localized string similar to Error. 83 | /// 84 | internal static string ErrorTitle { 85 | get { 86 | return ResourceManager.GetString("ErrorTitle", resourceCulture); 87 | } 88 | } 89 | 90 | /// 91 | /// Looks up a localized string similar to Soruce or destination invalid. 92 | /// 93 | internal static string FileNotFoundError { 94 | get { 95 | return ResourceManager.GetString("FileNotFoundError", resourceCulture); 96 | } 97 | } 98 | 99 | /// 100 | /// Looks up a localized string similar to Invalid target drive specified on command line. 101 | /// 102 | internal static string InvalidTargetDriveOnCommandLine { 103 | get { 104 | return ResourceManager.GetString("InvalidTargetDriveOnCommandLine", resourceCulture); 105 | } 106 | } 107 | } 108 | } 109 | -------------------------------------------------------------------------------- /GeocacheToPoi/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | {0} waypoints loaded! 122 | 123 | 124 | Done! 125 | 126 | 127 | Error 128 | 129 | 130 | Soruce or destination invalid 131 | 132 | 133 | Invalid target drive specified on command line 134 | 135 | -------------------------------------------------------------------------------- /GeocacheToPoi/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Mcaddy.GeocacheToPoi.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.4.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | 26 | [global::System.Configuration.UserScopedSettingAttribute()] 27 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 28 | [global::System.Configuration.DefaultSettingValueAttribute("")] 29 | public string GeocachingUsername { 30 | get { 31 | return ((string)(this["GeocachingUsername"])); 32 | } 33 | set { 34 | this["GeocachingUsername"] = value; 35 | } 36 | } 37 | 38 | [global::System.Configuration.UserScopedSettingAttribute()] 39 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 40 | [global::System.Configuration.DefaultSettingValueAttribute("True")] 41 | public bool ExcludeFound { 42 | get { 43 | return ((bool)(this["ExcludeFound"])); 44 | } 45 | set { 46 | this["ExcludeFound"] = value; 47 | } 48 | } 49 | 50 | [global::System.Configuration.UserScopedSettingAttribute()] 51 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 52 | [global::System.Configuration.DefaultSettingValueAttribute("True")] 53 | public bool ExcludeOwned { 54 | get { 55 | return ((bool)(this["ExcludeOwned"])); 56 | } 57 | set { 58 | this["ExcludeOwned"] = value; 59 | } 60 | } 61 | 62 | [global::System.Configuration.UserScopedSettingAttribute()] 63 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 64 | [global::System.Configuration.DefaultSettingValueAttribute("")] 65 | public string GpxPath { 66 | get { 67 | return ((string)(this["GpxPath"])); 68 | } 69 | set { 70 | this["GpxPath"] = value; 71 | } 72 | } 73 | } 74 | } 75 | -------------------------------------------------------------------------------- /GeocacheToPoi/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | True 10 | 11 | 12 | True 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /GeocacheToPoi/Settings.StyleCop: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | False 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /GeocacheToPoi/geocaching.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaddy/audipoi/cf43be99d26c666117b0fdf63c955afabd2f7be8/GeocacheToPoi/geocaching.ico -------------------------------------------------------------------------------- /GeocacheToPoi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaddy/audipoi/cf43be99d26c666117b0fdf63c955afabd2f7be8/GeocacheToPoi/refresh.png -------------------------------------------------------------------------------- /Geocaching/Geocaching.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {DBCA422B-F0C4-4AAD-A678-B89802A53BF9} 8 | Library 9 | Properties 10 | Geocaching 11 | Geocaching 12 | v4.8 13 | 512 14 | 15 | 16 | 17 | true 18 | full 19 | false 20 | bin\Debug\ 21 | DEBUG;TRACE 22 | prompt 23 | 4 24 | 25 | 26 | pdbonly 27 | true 28 | bin\Release\ 29 | TRACE 30 | prompt 31 | 4 32 | 33 | 34 | true 35 | 36 | 37 | Mike Caddy.pfx 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | True 55 | True 56 | Resources.resx 57 | 58 | 59 | 60 | 61 | {cfd0425c-cbcc-45c5-9009-b5d025826fe2} 62 | AudiPoiDatabase 63 | 64 | 65 | 66 | 67 | ResXFileCodeGenerator 68 | Resources.Designer.cs 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 105 | -------------------------------------------------------------------------------- /Geocaching/LetterboxIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaddy/audipoi/cf43be99d26c666117b0fdf63c955afabd2f7be8/Geocaching/LetterboxIcon.png -------------------------------------------------------------------------------- /Geocaching/Mike Caddy.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaddy/audipoi/cf43be99d26c666117b0fdf63c955afabd2f7be8/Geocaching/Mike Caddy.pfx -------------------------------------------------------------------------------- /Geocaching/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // All rights reserved 4 | // 5 | //----------------------------------------------------------------------- 6 | 7 | using System.Reflection; 8 | using System.Runtime.CompilerServices; 9 | using System.Runtime.InteropServices; 10 | 11 | // General Information about an assembly is controlled through the following 12 | // set of attributes. Change these attribute values to modify the information 13 | // associated with an assembly. 14 | [assembly: AssemblyTitle("Geocaching")] 15 | [assembly: AssemblyDescription("")] 16 | [assembly: AssemblyConfiguration("")] 17 | [assembly: AssemblyCompany("")] 18 | [assembly: AssemblyProduct("Geocaching")] 19 | [assembly: AssemblyCopyright("Copyright © 2018")] 20 | [assembly: AssemblyTrademark("")] 21 | [assembly: AssemblyCulture("")] 22 | 23 | // Setting ComVisible to false makes the types in this assembly not visible 24 | // to COM components. If you need to access a type in this assembly from 25 | // COM, set the ComVisible attribute to true on that type. 26 | [assembly: ComVisible(false)] 27 | 28 | // The following GUID is for the ID of the typelib if this project is exposed to COM 29 | [assembly: Guid("dbca422b-f0c4-4aad-a678-b89802a53bf9")] 30 | 31 | // Version information for an assembly consists of the following four values: 32 | // 33 | // Major Version 34 | // Minor Version 35 | // Build Number 36 | // Revision 37 | // 38 | // You can specify all the values or you can default the Build and Revision Numbers 39 | // by using the '*' as shown below: 40 | // [assembly: AssemblyVersion("1.0.*")] 41 | [assembly: AssemblyVersion("1.0.0.0")] 42 | [assembly: AssemblyFileVersion("1.0.0.0")] 43 | -------------------------------------------------------------------------------- /Geocaching/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Geocaching.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Returns the cached ResourceManager instance used by this class. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Geocaching.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Overrides the current thread's CurrentUICulture property for all 51 | /// resource lookups using this strongly typed resource class. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | 63 | /// 64 | /// Looks up a localized resource of type System.Drawing.Bitmap. 65 | /// 66 | internal static System.Drawing.Bitmap earthcacheIcon { 67 | get { 68 | object obj = ResourceManager.GetObject("earthcacheIcon", resourceCulture); 69 | return ((System.Drawing.Bitmap)(obj)); 70 | } 71 | } 72 | 73 | /// 74 | /// Looks up a localized resource of type System.Drawing.Bitmap. 75 | /// 76 | internal static System.Drawing.Bitmap letterboxIcon { 77 | get { 78 | object obj = ResourceManager.GetObject("letterboxIcon", resourceCulture); 79 | return ((System.Drawing.Bitmap)(obj)); 80 | } 81 | } 82 | 83 | /// 84 | /// Looks up a localized resource of type System.Drawing.Bitmap. 85 | /// 86 | internal static System.Drawing.Bitmap multiIcon { 87 | get { 88 | object obj = ResourceManager.GetObject("multiIcon", resourceCulture); 89 | return ((System.Drawing.Bitmap)(obj)); 90 | } 91 | } 92 | 93 | /// 94 | /// Looks up a localized resource of type System.Drawing.Bitmap. 95 | /// 96 | internal static System.Drawing.Bitmap mysteryIcon { 97 | get { 98 | object obj = ResourceManager.GetObject("mysteryIcon", resourceCulture); 99 | return ((System.Drawing.Bitmap)(obj)); 100 | } 101 | } 102 | 103 | /// 104 | /// Looks up a localized resource of type System.Drawing.Bitmap. 105 | /// 106 | internal static System.Drawing.Bitmap traditionalIcon { 107 | get { 108 | object obj = ResourceManager.GetObject("traditionalIcon", resourceCulture); 109 | return ((System.Drawing.Bitmap)(obj)); 110 | } 111 | } 112 | 113 | /// 114 | /// Looks up a localized resource of type System.Drawing.Bitmap. 115 | /// 116 | internal static System.Drawing.Bitmap virtualIcon { 117 | get { 118 | object obj = ResourceManager.GetObject("virtualIcon", resourceCulture); 119 | return ((System.Drawing.Bitmap)(obj)); 120 | } 121 | } 122 | 123 | /// 124 | /// Looks up a localized resource of type System.Drawing.Bitmap. 125 | /// 126 | internal static System.Drawing.Bitmap webcamIcon { 127 | get { 128 | object obj = ResourceManager.GetObject("webcamIcon", resourceCulture); 129 | return ((System.Drawing.Bitmap)(obj)); 130 | } 131 | } 132 | 133 | /// 134 | /// Looks up a localized resource of type System.Drawing.Bitmap. 135 | /// 136 | internal static System.Drawing.Bitmap wherigoIcon { 137 | get { 138 | object obj = ResourceManager.GetObject("wherigoIcon", resourceCulture); 139 | return ((System.Drawing.Bitmap)(obj)); 140 | } 141 | } 142 | } 143 | } 144 | -------------------------------------------------------------------------------- /Geocaching/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Geocaching/earthcacheIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaddy/audipoi/cf43be99d26c666117b0fdf63c955afabd2f7be8/Geocaching/earthcacheIcon.png -------------------------------------------------------------------------------- /Geocaching/multiIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaddy/audipoi/cf43be99d26c666117b0fdf63c955afabd2f7be8/Geocaching/multiIcon.png -------------------------------------------------------------------------------- /Geocaching/mysteryIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaddy/audipoi/cf43be99d26c666117b0fdf63c955afabd2f7be8/Geocaching/mysteryIcon.png -------------------------------------------------------------------------------- /Geocaching/traditionalIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaddy/audipoi/cf43be99d26c666117b0fdf63c955afabd2f7be8/Geocaching/traditionalIcon.png -------------------------------------------------------------------------------- /Geocaching/virtualIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaddy/audipoi/cf43be99d26c666117b0fdf63c955afabd2f7be8/Geocaching/virtualIcon.png -------------------------------------------------------------------------------- /Geocaching/webcamIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaddy/audipoi/cf43be99d26c666117b0fdf63c955afabd2f7be8/Geocaching/webcamIcon.png -------------------------------------------------------------------------------- /Geocaching/wherigoIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaddy/audipoi/cf43be99d26c666117b0fdf63c955afabd2f7be8/Geocaching/wherigoIcon.png -------------------------------------------------------------------------------- /Logging/.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | 4 | # Azure Functions localsettings file 5 | local.settings.json 6 | 7 | # User-specific files 8 | *.suo 9 | *.user 10 | *.userosscache 11 | *.sln.docstates 12 | 13 | # User-specific files (MonoDevelop/Xamarin Studio) 14 | *.userprefs 15 | 16 | # Build results 17 | [Dd]ebug/ 18 | [Dd]ebugPublic/ 19 | [Rr]elease/ 20 | [Rr]eleases/ 21 | x64/ 22 | x86/ 23 | bld/ 24 | [Bb]in/ 25 | [Oo]bj/ 26 | [Ll]og/ 27 | 28 | # Visual Studio 2015 cache/options directory 29 | .vs/ 30 | # Uncomment if you have tasks that create the project's static files in wwwroot 31 | #wwwroot/ 32 | 33 | # MSTest test Results 34 | [Tt]est[Rr]esult*/ 35 | [Bb]uild[Ll]og.* 36 | 37 | # NUNIT 38 | *.VisualState.xml 39 | TestResult.xml 40 | 41 | # Build Results of an ATL Project 42 | [Dd]ebugPS/ 43 | [Rr]eleasePS/ 44 | dlldata.c 45 | 46 | # DNX 47 | project.lock.json 48 | project.fragment.lock.json 49 | artifacts/ 50 | 51 | *_i.c 52 | *_p.c 53 | *_i.h 54 | *.ilk 55 | *.meta 56 | *.obj 57 | *.pch 58 | *.pdb 59 | *.pgc 60 | *.pgd 61 | *.rsp 62 | *.sbr 63 | *.tlb 64 | *.tli 65 | *.tlh 66 | *.tmp 67 | *.tmp_proj 68 | *.log 69 | *.vspscc 70 | *.vssscc 71 | .builds 72 | *.pidb 73 | *.svclog 74 | *.scc 75 | 76 | # Chutzpah Test files 77 | _Chutzpah* 78 | 79 | # Visual C++ cache files 80 | ipch/ 81 | *.aps 82 | *.ncb 83 | *.opendb 84 | *.opensdf 85 | *.sdf 86 | *.cachefile 87 | *.VC.db 88 | *.VC.VC.opendb 89 | 90 | # Visual Studio profiler 91 | *.psess 92 | *.vsp 93 | *.vspx 94 | *.sap 95 | 96 | # TFS 2012 Local Workspace 97 | $tf/ 98 | 99 | # Guidance Automation Toolkit 100 | *.gpState 101 | 102 | # ReSharper is a .NET coding add-in 103 | _ReSharper*/ 104 | *.[Rr]e[Ss]harper 105 | *.DotSettings.user 106 | 107 | # JustCode is a .NET coding add-in 108 | .JustCode 109 | 110 | # TeamCity is a build add-in 111 | _TeamCity* 112 | 113 | # DotCover is a Code Coverage Tool 114 | *.dotCover 115 | 116 | # NCrunch 117 | _NCrunch_* 118 | .*crunch*.local.xml 119 | nCrunchTemp_* 120 | 121 | # MightyMoose 122 | *.mm.* 123 | AutoTest.Net/ 124 | 125 | # Web workbench (sass) 126 | .sass-cache/ 127 | 128 | # Installshield output folder 129 | [Ee]xpress/ 130 | 131 | # DocProject is a documentation generator add-in 132 | DocProject/buildhelp/ 133 | DocProject/Help/*.HxT 134 | DocProject/Help/*.HxC 135 | DocProject/Help/*.hhc 136 | DocProject/Help/*.hhk 137 | DocProject/Help/*.hhp 138 | DocProject/Help/Html2 139 | DocProject/Help/html 140 | 141 | # Click-Once directory 142 | publish/ 143 | 144 | # Publish Web Output 145 | *.[Pp]ublish.xml 146 | *.azurePubxml 147 | #*.pubxml 148 | *.publishproj 149 | 150 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 151 | # checkin your Azure Web App publish settings, but sensitive information contained 152 | # in these scripts will be unencrypted 153 | PublishScripts/ 154 | 155 | # NuGet Packages 156 | *.nupkg 157 | # The packages folder can be ignored because of Package Restore 158 | **/packages/* 159 | # except build/, which is used as an MSBuild target. 160 | !**/packages/build/ 161 | # Uncomment if necessary however generally it will be regenerated when needed 162 | #!**/packages/repositories.config 163 | # NuGet v3's project.json files produces more ignoreable files 164 | *.nuget.props 165 | *.nuget.targets 166 | 167 | # Microsoft Azure Build Output 168 | csx/ 169 | *.build.csdef 170 | 171 | # Microsoft Azure Emulator 172 | ecf/ 173 | rcf/ 174 | 175 | # Windows Store app package directories and files 176 | AppPackages/ 177 | BundleArtifacts/ 178 | Package.StoreAssociation.xml 179 | _pkginfo.txt 180 | 181 | # Visual Studio cache files 182 | # files ending in .cache can be ignored 183 | *.[Cc]ache 184 | # but keep track of directories ending in .cache 185 | !*.[Cc]ache/ 186 | 187 | # Others 188 | ClientBin/ 189 | ~$* 190 | *~ 191 | *.dbmdl 192 | *.dbproj.schemaview 193 | *.jfm 194 | *.pfx 195 | *.publishsettings 196 | node_modules/ 197 | orleans.codegen.cs 198 | 199 | # Since there are multiple workflows, uncomment next line to ignore bower_components 200 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 201 | #bower_components/ 202 | 203 | # RIA/Silverlight projects 204 | Generated_Code/ 205 | 206 | # Backup & report files from converting an old project file 207 | # to a newer Visual Studio version. Backup files are not needed, 208 | # because we have git ;-) 209 | _UpgradeReport_Files/ 210 | Backup*/ 211 | UpgradeLog*.XML 212 | UpgradeLog*.htm 213 | 214 | # SQL Server files 215 | *.mdf 216 | *.ldf 217 | 218 | # Business Intelligence projects 219 | *.rdl.data 220 | *.bim.layout 221 | *.bim_*.settings 222 | 223 | # Microsoft Fakes 224 | FakesAssemblies/ 225 | 226 | # GhostDoc plugin setting file 227 | *.GhostDoc.xml 228 | 229 | # Node.js Tools for Visual Studio 230 | .ntvs_analysis.dat 231 | 232 | # Visual Studio 6 build log 233 | *.plg 234 | 235 | # Visual Studio 6 workspace options file 236 | *.opt 237 | 238 | # Visual Studio LightSwitch build output 239 | **/*.HTMLClient/GeneratedArtifacts 240 | **/*.DesktopClient/GeneratedArtifacts 241 | **/*.DesktopClient/ModelManifest.xml 242 | **/*.Server/GeneratedArtifacts 243 | **/*.Server/ModelManifest.xml 244 | _Pvt_Extensions 245 | 246 | # Paket dependency manager 247 | .paket/paket.exe 248 | paket-files/ 249 | 250 | # FAKE - F# Make 251 | .fake/ 252 | 253 | # JetBrains Rider 254 | .idea/ 255 | *.sln.iml 256 | 257 | # CodeRush 258 | .cr/ 259 | 260 | # Python Tools for Visual Studio (PTVS) 261 | __pycache__/ 262 | *.pyc -------------------------------------------------------------------------------- /Logging/GetAccessToken.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // All rights reserved 4 | // 5 | //----------------------------------------------------------------------- 6 | namespace Logging 7 | { 8 | using System; 9 | using System.Linq; 10 | using Microsoft.AspNetCore.Http; 11 | using Microsoft.AspNetCore.Mvc; 12 | using Microsoft.Azure.WebJobs; 13 | using Microsoft.Azure.WebJobs.Extensions.Http; 14 | using Microsoft.Extensions.Logging; 15 | using Microsoft.WindowsAzure.Storage; 16 | 17 | /// 18 | /// Azure Function - Get Access Token 19 | /// 20 | public static class GetAccessToken 21 | { 22 | /// 23 | /// Azure Function - Get Access Token 24 | /// 25 | /// Source Http Request 26 | /// Username for the token 27 | /// Logger Instance 28 | /// A token if we are happy for user to store csv in the cloud 29 | [FunctionName("GetAccessToken")] 30 | public static IActionResult Run( 31 | [HttpTrigger(AuthorizationLevel.Anonymous, "get", Route = "GetAccessToken/{username}")] HttpRequest req, string username, ILogger log) 32 | { 33 | string clientIp = GetIpFromRequestHeaders(req); 34 | 35 | log.LogInformation($"Access Token Request for {username} from {clientIp}"); 36 | 37 | // Don't issue tokens unless we've got a username 38 | if (string.IsNullOrEmpty(username)) 39 | { 40 | return new BadRequestObjectResult(string.Empty); 41 | } 42 | 43 | string accountKey = Environment.GetEnvironmentVariable("AccountKey"); 44 | string accountName = Environment.GetEnvironmentVariable("AccountName"); 45 | 46 | // To create the account SAS, you need to use your shared key credentials. Modify for your account. 47 | string connectionString = $"DefaultEndpointsProtocol=https;AccountName={accountName};AccountKey={accountKey}"; 48 | CloudStorageAccount storageAccount = CloudStorageAccount.Parse(connectionString); 49 | 50 | // Create a new access policy for the account. 51 | SharedAccessAccountPolicy policy = new SharedAccessAccountPolicy() 52 | { 53 | Permissions = SharedAccessAccountPermissions.Read | SharedAccessAccountPermissions.Write | SharedAccessAccountPermissions.List, 54 | Services = SharedAccessAccountServices.Blob, 55 | ResourceTypes = SharedAccessAccountResourceTypes.Container | SharedAccessAccountResourceTypes.Object, 56 | SharedAccessExpiryTime = DateTime.UtcNow.AddHours(1), 57 | Protocols = SharedAccessProtocol.HttpsOnly 58 | }; 59 | 60 | return (ActionResult)new OkObjectResult(storageAccount.GetSharedAccessSignature(policy)); 61 | } 62 | 63 | /// 64 | /// Get the IP address from the request headers 65 | /// 66 | /// Source request 67 | /// IP Address if one can be identified 68 | private static string GetIpFromRequestHeaders(HttpRequest request) 69 | { 70 | if (request.Headers.TryGetValue("X-Forwarded-For", out Microsoft.Extensions.Primitives.StringValues values)) 71 | { 72 | return values.FirstOrDefault().Split(new char[] { ',' }).FirstOrDefault().Split(new char[] { ':' }).FirstOrDefault(); 73 | } 74 | 75 | return string.Empty; 76 | } 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /Logging/GlobalSuppressions.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // All rights reserved 4 | // 5 | //----------------------------------------------------------------------- 6 | [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0060:Remove unused parameter", Justification = "Req parameter required for route to work", Scope = "member", Target = "~M:Logging.LogEvent.Run(Microsoft.AspNetCore.Http.HttpRequest,System.String,System.String,Microsoft.Extensions.Logging.ILogger)~Microsoft.AspNetCore.Mvc.IActionResult")] -------------------------------------------------------------------------------- /Logging/LogEvent.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // All rights reserved 4 | // 5 | //----------------------------------------------------------------------- 6 | namespace Logging 7 | { 8 | using System; 9 | using Microsoft.AspNetCore.Http; 10 | using Microsoft.AspNetCore.Mvc; 11 | using Microsoft.Azure.WebJobs; 12 | using Microsoft.Azure.WebJobs.Extensions.Http; 13 | using Microsoft.Extensions.Logging; 14 | using Microsoft.WindowsAzure.Storage; 15 | using Microsoft.WindowsAzure.Storage.Auth; 16 | using Microsoft.WindowsAzure.Storage.Blob; 17 | 18 | /// 19 | /// Azure Function 20 | /// 21 | public static class LogEvent 22 | { 23 | /// 24 | /// Azure Function - Log Event 25 | /// 26 | /// Http Request 27 | /// The Username 28 | /// The Message 29 | /// Logger Instance 30 | /// A Task 31 | [FunctionName("LogEvent")] 32 | public static IActionResult Run( 33 | [HttpTrigger(AuthorizationLevel.Anonymous, "get", Route = "LogEvent/{username}/{Message}")] HttpRequest req, 34 | string username, 35 | string message, 36 | ILogger log) 37 | { 38 | log.LogInformation($"Log Event invoked for {username}"); 39 | 40 | Persist(username, message); 41 | 42 | return (ActionResult)new OkObjectResult($"Event Logged"); 43 | } 44 | 45 | /// 46 | /// Log the event to persistent store 47 | /// 48 | /// username of the caller 49 | /// message from the caller 50 | private static async void Persist(string username, string message) 51 | { 52 | string accountKey = Environment.GetEnvironmentVariable("AccountKey"); 53 | string accountName = Environment.GetEnvironmentVariable("AccountName"); 54 | 55 | // Implement the accout, set true for https for SSL. 56 | StorageCredentials creds = new StorageCredentials(accountName, accountKey); 57 | CloudStorageAccount strAcc = new CloudStorageAccount(creds, true); 58 | CloudBlobClient blobClient = strAcc.CreateCloudBlobClient(); 59 | 60 | // Setup our container we are going to use and create it. 61 | CloudBlobContainer container = blobClient.GetContainerReference("logs"); 62 | await container.CreateIfNotExistsAsync(); 63 | 64 | // Build my typical log file name. 65 | DateTime date = DateTime.Today; 66 | DateTime dateLogEntry = DateTime.Now; 67 | 68 | // This creates a reference to the append blob we are going to use. 69 | CloudAppendBlob appBlob = container.GetAppendBlobReference( 70 | string.Format("{0}{1}", date.ToString("yyyyMMdd"), ".log")); 71 | 72 | // Now we are going to check if todays file exists and if it doesn't we create it. 73 | if (!await appBlob.ExistsAsync()) 74 | { 75 | await appBlob.CreateOrReplaceAsync(); 76 | } 77 | 78 | // Add the entry to our log. 79 | await appBlob.AppendTextAsync($"{dateLogEntry.ToString("o")}-{username}-{message}\r\n"); 80 | } 81 | } 82 | } 83 | -------------------------------------------------------------------------------- /Logging/LoggingBackend.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | net7.0 4 | v2 5 | Logging 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | PreserveNewest 19 | 20 | 21 | PreserveNewest 22 | Never 23 | 24 | 25 | -------------------------------------------------------------------------------- /Logging/Properties/PublishProfiles/MCLogging - Zip Deploy.pubxml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | ZipDeploy 6 | AzureWebSite 7 | Release 8 | Any CPU 9 | https://mclogging.azurewebsites.net 10 | False 11 | /subscriptions/5ac7ba3f-565d-4dd1-bb19-bf3bd2505df0/resourcegroups/FrankLarge/providers/Microsoft.Web/sites/MCLogging 12 | $MCLogging 13 | <_SavePWD>True 14 | https://mclogging.scm.azurewebsites.net/ 15 | 16 | -------------------------------------------------------------------------------- /Logging/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /POIBuilder/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 |
6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -1 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | -------------------------------------------------------------------------------- /POIBuilder/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /POIBuilder/App.xaml.cs: -------------------------------------------------------------------------------- 1 | //----------------------------------------------------------------------- 2 | // 3 | // All rights reserved 4 | // 5 | //----------------------------------------------------------------------- 6 | namespace POIBuilder 7 | { 8 | using System.Windows; 9 | using Mcaddy; 10 | 11 | /// 12 | /// Interaction logic for App 13 | /// 14 | public partial class App : Application 15 | { 16 | /// 17 | /// Configuration object 18 | /// 19 | private static Config configuration = new Config(); 20 | 21 | /// 22 | /// Gets the Configuration 23 | /// 24 | public static Config Configuration { get => configuration; private set => configuration = value; } 25 | 26 | /// 27 | /// App Startup Event - Process the Command Line arguments 28 | /// 29 | /// Sender Argument 30 | /// Startup Event Arguments 31 | private void Application_Startup(object sender, StartupEventArgs e) 32 | { 33 | bool auto = false; 34 | string targetDrive = string.Empty; 35 | 36 | // Parse Command Line 37 | for (int i = 0; i < e.Args.Length; i++) 38 | { 39 | switch (e.Args[i].ToLower()) 40 | { 41 | case "-auto": 42 | auto = true; 43 | break; 44 | case "-target": 45 | if (e.Args.Length > (i + 1)) 46 | { 47 | targetDrive = e.Args[i + 1]; 48 | } 49 | 50 | break; 51 | default: 52 | break; 53 | } 54 | } 55 | 56 | App.Current.Properties["targetDrive"] = targetDrive; 57 | App.Current.Properties["auto"] = auto; 58 | } 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /POIBuilder/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 |