Code Monkey home page Code Monkey logo

Comments (32)

Rakiah avatar Rakiah commented on June 2, 2024 2

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

from coordinatesharp.

pre-martin avatar pre-martin commented on June 2, 2024 2

@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" :-)

from coordinatesharp.

natancmacedo avatar natancmacedo commented on June 2, 2024 2

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

from coordinatesharp.

rfnoise avatar rfnoise commented on June 2, 2024 1

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.

from coordinatesharp.

Radnix666 avatar Radnix666 commented on June 2, 2024 1

@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 !!! :)

from coordinatesharp.

sharkAndshark avatar sharkAndshark commented on June 2, 2024 1

will try use it for geo data crawler from map

from coordinatesharp.

Rhybo avatar Rhybo commented on June 2, 2024 1

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

from coordinatesharp.

ianisms avatar ianisms commented on June 2, 2024 1

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

from coordinatesharp.

AndrzejButrym avatar AndrzejButrym commented on June 2, 2024 1

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

from coordinatesharp.

rolyhudson avatar rolyhudson commented on June 2, 2024 1

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.

from coordinatesharp.

dvdnhm avatar dvdnhm commented on June 2, 2024 1

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

from coordinatesharp.

pre-martin avatar pre-martin commented on June 2, 2024 1

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? :-)

from coordinatesharp.

FloffyTheGreat avatar FloffyTheGreat commented on June 2, 2024 1

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?

from coordinatesharp.

Tronald avatar Tronald commented on June 2, 2024 1

@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

from coordinatesharp.

Tronald avatar Tronald commented on June 2, 2024 1

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

from coordinatesharp.

JLMenegotto avatar JLMenegotto commented on June 2, 2024 1

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

from coordinatesharp.

codepuller avatar codepuller commented on June 2, 2024 1

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

from coordinatesharp.

cdavidyoung avatar cdavidyoung commented on June 2, 2024 1

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

from coordinatesharp.

rawill5053 avatar rawill5053 commented on June 2, 2024 1

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.

from coordinatesharp.

alfamizar avatar alfamizar commented on June 2, 2024 1

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

from coordinatesharp.

houstonhaynes avatar houstonhaynes commented on June 2, 2024 1

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

from coordinatesharp.

Tronald avatar Tronald commented on June 2, 2024

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

from coordinatesharp.

FalcoGer avatar FalcoGer commented on June 2, 2024

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

from coordinatesharp.

Tronald avatar Tronald commented on June 2, 2024

@FalcoGer thank you for sharing, very cool!

from coordinatesharp.

Tronald avatar Tronald commented on June 2, 2024

That’s great! Thank you for sharing!

from coordinatesharp.

Tronald avatar Tronald commented on June 2, 2024

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

from coordinatesharp.

Tronald avatar Tronald commented on June 2, 2024

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

from coordinatesharp.

Tronald avatar Tronald commented on June 2, 2024

@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.

from coordinatesharp.

Tronald avatar Tronald commented on June 2, 2024

@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.

from coordinatesharp.

LiteracyFanatic avatar LiteracyFanatic commented on June 2, 2024

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

from coordinatesharp.

Tronald avatar Tronald commented on June 2, 2024

@LiteracyFanatic NICE! Thank you for sharing.

from coordinatesharp.

Tronald avatar Tronald commented on June 2, 2024

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

from coordinatesharp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.