Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tell Us What You're Using CoordinateSharp For! #79

Open
Tronald opened this issue Jan 18, 2019 · 32 comments
Open

Tell Us What You're Using CoordinateSharp For! #79

Tronald opened this issue Jan 18, 2019 · 32 comments

Comments

@Tronald
Copy link
Owner

Tronald commented Jan 18, 2019

How Are You Using CoordinateSharp?

This library took a lot of effort to make, and takes a lot of effort to maintain. It's done so completely for the good of the developer community. Please make it worth while by sharing what you are using the library for in this issue.

A Few Currently Known Real World Uses

-Multiple video games to include the first major use, Walking Dead Our World.
-Air Force Flight Planning Software.
-Coast Guard Mission Management Software.
-Army Artillery Informational Briefings.
-Army Field Medical Communication Tech.
-Power Savings Applications.
-Weather Station Grouping Applications.
-Automated Moon Tracking Telescopes.
-Animal Observation Logging.
-Animal Nutritional Research.
-Digital Combat and Aerial Simulators.
-Mobile Laser Scanning.
-Drone Mesh Networking.
-Multiple Smart Home applications and IoT devices.
-Emergency response guidance.
-UxV simulations.
-And much much more!

Please comment below or shoot us a message as we love to hear how you are using CoordinateSharp!

@Tronald Tronald closed this as completed Jan 18, 2019
@Tronald Tronald reopened this Jan 18, 2019
@Tronald Tronald pinned this issue Jan 18, 2019
@Tronald Tronald changed the title Tell us What You Are Using CoordinateSharp For? Tell Us What You're Using CoordinateSharp For! Jan 19, 2019
@rfnoise
Copy link

rfnoise commented Feb 6, 2019

I use the library to determine sunrise and sunset at arbitrary locations selected by a NOAA GOES geosynchronous satellite. If it's dark (after local sunset) then the image generation for the visible and false color images are not generated, saving time but more importantly disk space.

@Tronald
Copy link
Owner Author

Tronald commented Feb 6, 2019

@rfnoise thank you so much for sharing!!!!!

@FalcoGer
Copy link

I use it for a coordinate converter for digital combat simulator to easily calculate coordinates in a system that are used in my plane from a variety of sources that use a different system.
Project available @ https://github.com/FalcoGer/CoordinateConverter

@Tronald
Copy link
Owner Author

Tronald commented Jun 23, 2019

@FalcoGer thank you for sharing, very cool!

@Radnix666
Copy link

@Radnix: I use it to convert spacial XYZ coordinates to simple latitude and longitude for my aerial simulator. Very impressive work. Much thanks for this development !!! :)

@Tronald
Copy link
Owner Author

Tronald commented Sep 3, 2019

That’s great! Thank you for sharing!

@sharkAndshark
Copy link

will try use it for geo data crawler from map

@Rhybo
Copy link

Rhybo commented Nov 8, 2019

I used CoordinateSharp to help turn UTM coordinates into lat/long positions so I can instantiate simulated UxVs in a virtual environment. CoordinateSharp enabled the near real-time positioning of simulated entities within a virtual environment serving as a 3d-UI. Thanks for exposing those UTM values for me!

If your interested in reading the thesis please read it here: "Observational Oversight For Understanding Trust In Interactive Human AI Systems"

image

@Tronald
Copy link
Owner Author

Tronald commented Nov 8, 2019

@Rhybo I love this thank you so much for sharing that is wicked cool! I can’t wait to read it!

@ianisms
Copy link

ianisms commented Nov 15, 2019

Using in ianisms/SmartThings.NETCoreWebHookSDK to get sunrise / sunset data for a given lat/lon for use in SmartThings automations.

@Tronald
Copy link
Owner Author

Tronald commented Nov 15, 2019

@ianisms sweet! I checked out your project earlier today, looks awesome. Thanks for the response.

@AndrzejButrym
Copy link

I use it to convert coordinates sent by IoT sensors to decimal degree values.
Good job guys!

@Rakiah
Copy link

Rakiah commented Jan 6, 2020

To move coordinates from a position to another for vehicles-in-city simulator

@rolyhudson
Copy link

Very cool work. Thanks. I am using it as part of development of an OpenStreetMap_Toolkit https://github.com/BHoM/OpenStreetMap_Toolkit within https://github.com/BHoM.

@dvdnhm
Copy link

dvdnhm commented Mar 24, 2020

We determine a sports facility's eligibility for a specific event based on sunset time and the number of fields with lights.

@pre-martin
Copy link

pre-martin commented May 27, 2020

I use it for sunrise/sunset calculation at lat/lon (actually airports) and distance / bearing calculations (ellipsoid) between two points (runway length and runway true direction).

Edit: Any plans to integrate magnetic declination calculation for given coordinates? :-)

@Tronald
Copy link
Owner Author

Tronald commented May 27, 2020

@pre-martin thank you for the comment!

Magnetic declination would be super useful to have in CoordinateSharp, but it will most likely never be included in the base library due to the fact that the models constantly change. As you can only accurately predict a few years ahead (as far as I understand anyway), including such a feature in the base library would require users to constantly update the library to ensure the map data is up to date. This goes against the goal of the library (having a simple standalone way to calculate coordinate/celestial items without the need of stored data or web calls).

We're currently investigating library extensions however that could be downloaded via Nuget. The purpose of the extensions are to enhance CoordinateSharp without forcing the base library to rely on data. This way we could start introducing data based items such as magnetic declination.

I will add this to our requested enhancement list. I like the idea of having it and it could be a good first extension to build for the library.

@FloffyTheGreat
Copy link

Using it for a almanac, to see sun angle, sunrise/sunset, golden hour, blue hour and more.
Is it possible to calculate/get Solstice/Equinox?

@Tronald
Copy link
Owner Author

Tronald commented Jun 23, 2020

@FloffyTheGreat CoordinateSharp does not currently have the ability to calculate Solstice or Equinox DateTime, This is certainly a feature that could be added. Please feel free to raise a new issue and request it.

@Tronald
Copy link
Owner Author

Tronald commented Oct 28, 2020

@pre-martin You'll be happy to know we just got the logic built for magnetic data. This seems to be a popular request. It will be available as an extension package that should hopefully be ready by the next release (sometime next month).

The initial release will contain data models spanning 2015-2025. It will have tons of different magnetic field properties and it's super easy to use.

Usage Example:

using CoordinateSharp;
using CoordinateSharp.Magnetic;

Coordinate c = new Coordinate(45,-120, new DateTime(2020,10,27));
Magnetic m = new Magnetic(c, DataModel.WMM2020);
Magnetic.MagneticFieldElements.Declination;//14.45

@LiteracyFanatic
Copy link

Hi, thanks a lot for this useful library. I made a map of Wisconsin's technical colleges with it. https://github.com/LiteracyFanatic/truck-map
map

@Tronald
Copy link
Owner Author

Tronald commented Oct 28, 2020

@LiteracyFanatic NICE! Thank you for sharing.

@Tronald
Copy link
Owner Author

Tronald commented Dec 19, 2020

@pre-martin magnetic field values are now available via the magnetic extension package.

@pre-martin
Copy link

@pre-martin magnetic field values are now available via the magnetic extension package.

Works perfect. Thank you. Found only one small problem: https://github.com/Tronald/CoordinateSharp/blob/master/CoordinateSharp.Magnetic/Magnetic/Magentic.Model.cs should be named "Magnetic" instead of "Magentic" :-)

@JLMenegotto
Copy link

Thank you so much for this formidable tool Tronald. I'm using it to test applications that extract information from BIM models.
CTLATLON

@codepuller
Copy link

We are going to use this to check sunrise and sunset for calculations on solar panel telemetry data. Nice Work!

@natancmacedo
Copy link

I will use to determinate carnival holiday in Brazil:
Carnival is a holiday that is defined after the Easter day
And Easter day is: the next Sunday after the first full moon after the equinox

After Easter calculated I can calculate carnival that is 46 days before the Easter day, 47 days when is leap year

@cdavidyoung
Copy link

I use this great nuget in my gammaDog mobile app to parse coordinates that are input by the user manually (usually pasted from another source). I tried many input formats (DD, DDM, DMS) and variations and it seems to be very robust. I also use the nice Display string. Good job!
IMG_1024

@rawill5053
Copy link

I use it for Sun and Moon rise, set, azimuth, altitude, references. Sun dial design. Would love to have it provide parallactic angles to determine true visual moon orientation from any point on Earth.

@alfamizar
Copy link

alfamizar commented Mar 2, 2023

I am using this great libraby in combination with .NET MAUI to create cross-platform app, that can caclulate and display celestial/zodiac data based on GPS location or by user coordinates input , works without internet connection. Using Eager Loading and ParallelFor, on a mid-range smartphone it takes few seconds to make calculation for 365 days.
Planning to add artillery calculations and coordinates converters
Screenshot_1677791990
Screenshot_1677791981
Screenshot_1677792016

@Tronald
Copy link
Owner Author

Tronald commented Mar 5, 2023

@alfamizar that is super cool thank you for sharing this!! Please let us know if you publish this on the app store.

@houstonhaynes
Copy link

I'm using CoordinateSharp (in F#!) to create scheduled tasks for repositioning a solar panel/array based on date and location.

Repository owner deleted a comment Apr 27, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests