Salta al contenuto
0
  • Home
  • Piero Bosio
  • Blog
  • Mondo
  • Fediverso
  • News
  • Categorie
  • Recenti
  • Popolare
  • Tag
  • Utenti
  • Gruppi
  • Home
  • Piero Bosio
  • Blog
  • Mondo
  • Fediverso
  • News
  • Categorie
  • Recenti
  • Popolare
  • Tag
  • Utenti
  • Gruppi
Skin
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Predefinito (Nessuna skin)
  • Nessuna skin
Collassa

Piero Bosio Web Site

Forum federato con il resto del mondo. Non contano le istanze, contano le persone

  1. Home
  2. Categorie
  3. Senza categoria
  4. i nerd sniped myself tonight and i imagine the NSA operative who is assigned to me is very confused by the increasingly erratic and frustrated google searches for HOW DO I CALCULATE THE MOON WHERE IS THE MOON

i nerd sniped myself tonight and i imagine the NSA operative who is assigned to me is very confused by the increasingly erratic and frustrated google searches for HOW DO I CALCULATE THE MOON WHERE IS THE MOON

Pianificato Fissato Bloccato Spostato Senza categoria
19 Post 3 Autori 0 Visualizzazioni
  • Da Vecchi a Nuovi
  • Da Nuovi a Vecchi
  • Più Voti
Rispondi
  • Topic risposta
Effettua l'accesso per rispondere
Questa discussione è stata eliminata. Solo gli utenti con diritti di gestione possono vederla.
  • aevaundefined aeva

    @jon_valdes i found this a few hours ago http://www.geoastro.de/elevazmoon/basics/index.htm haven't had a chance to look at it in detail but it looked promising at first skim

    Josh Simmonsundefined Questo utente è esterno a questo forum
    Josh Simmonsundefined Questo utente è esterno a questo forum
    Josh Simmons
    scritto su ultima modifica di
    #9

    @aeva @jon_valdes I'm trying to remember what program we use to generate location accurate star charts in Avatar and Division... Maybe it can do the moon as well, will look it up later.

    Josh Simmonsundefined 1 Risposta Ultima Risposta
    • Josh Simmonsundefined Josh Simmons

      @aeva @jon_valdes I'm trying to remember what program we use to generate location accurate star charts in Avatar and Division... Maybe it can do the moon as well, will look it up later.

      Josh Simmonsundefined Questo utente è esterno a questo forum
      Josh Simmonsundefined Questo utente è esterno a questo forum
      Josh Simmons
      scritto su ultima modifica di
      #10

      @aeva @jon_valdes alright I think we just use data from sdss and reproject it for alpha centuri, blindly extrapolating for the correct date using the star velocity. so no complex orbital mechanics. However for the planetary bodies in solar system we use code derived from https://stjarnhimlen.se/comp/ppcomp.html

      Jon Valdésundefined 1 Risposta Ultima Risposta
      • Josh Simmonsundefined Josh Simmons

        @aeva @jon_valdes alright I think we just use data from sdss and reproject it for alpha centuri, blindly extrapolating for the correct date using the star velocity. so no complex orbital mechanics. However for the planetary bodies in solar system we use code derived from https://stjarnhimlen.se/comp/ppcomp.html

        Jon Valdésundefined Questo utente è esterno a questo forum
        Jon Valdésundefined Questo utente è esterno a questo forum
        Jon Valdés
        scritto su ultima modifica di
        #11

        @dotstdy @aeva oh, nice!

        Word of caution about calculating these things on the GPU: implementations of trigonometric functions on the GPU are less accurate than you'd hope, and if you calculate a bunch of sin() and cos() for your view direction per pixel, they turn out not to be accurate enough for stable movement across a 60° fov on a 4K screen. Particularly Intel, which seems to barely pass the D3D precision requirements there...

        Josh Simmonsundefined 1 Risposta Ultima Risposta
        • Jon Valdésundefined Jon Valdés

          @dotstdy @aeva oh, nice!

          Word of caution about calculating these things on the GPU: implementations of trigonometric functions on the GPU are less accurate than you'd hope, and if you calculate a bunch of sin() and cos() for your view direction per pixel, they turn out not to be accurate enough for stable movement across a 60° fov on a 4K screen. Particularly Intel, which seems to barely pass the D3D precision requirements there...

          Josh Simmonsundefined Questo utente è esterno a questo forum
          Josh Simmonsundefined Questo utente è esterno a questo forum
          Josh Simmons
          scritto su ultima modifica di
          #12

          @jon_valdes @aeva right, yeah I should also mention all that is done on the cpu, and with double precision. I'm not really sure if you can even squeeze it to work with f32.

          Jon Valdésundefined 1 Risposta Ultima Risposta
          • Josh Simmonsundefined Josh Simmons

            @jon_valdes @aeva right, yeah I should also mention all that is done on the cpu, and with double precision. I'm not really sure if you can even squeeze it to work with f32.

            Jon Valdésundefined Questo utente è esterno a questo forum
            Jon Valdésundefined Questo utente è esterno a questo forum
            Jon Valdés
            scritto su ultima modifica di
            #13

            @dotstdy @aeva at least for star positioning f32 was barely enough for me... as long as I rolled my own trig functions

            aevaundefined 1 Risposta Ultima Risposta
            • Jon Valdésundefined Jon Valdés

              @dotstdy @aeva at least for star positioning f32 was barely enough for me... as long as I rolled my own trig functions

              aevaundefined Questo utente è esterno a questo forum
              aevaundefined Questo utente è esterno a questo forum
              aeva
              scritto su ultima modifica di
              #14

              @jon_valdes @dotstdy blessedly I'm planning on doing this on the cpu, but 😧

              Jon Valdésundefined 1 Risposta Ultima Risposta
              • aevaundefined aeva

                @jon_valdes @dotstdy blessedly I'm planning on doing this on the cpu, but 😧

                Jon Valdésundefined Questo utente è esterno a questo forum
                Jon Valdésundefined Questo utente è esterno a questo forum
                Jon Valdés
                scritto su ultima modifica di
                #15

                @aeva @dotstdy if you want to see this in action, open this shadertoy on a few different GPUs and compare the output on each. Particularly fun if you have a pre-Arc Intel GPU...

                https://www.shadertoy.com/view/dtlyD8

                aevaundefined 1 Risposta Ultima Risposta
                • Jon Valdésundefined Jon Valdés

                  @aeva @dotstdy if you want to see this in action, open this shadertoy on a few different GPUs and compare the output on each. Particularly fun if you have a pre-Arc Intel GPU...

                  https://www.shadertoy.com/view/dtlyD8

                  aevaundefined Questo utente è esterno a questo forum
                  aevaundefined Questo utente è esterno a questo forum
                  aeva
                  scritto su ultima modifica di
                  #16

                  @jon_valdes @dotstdy my laptop has a recent-ish Xe gpu

                  aevaundefined 1 Risposta Ultima Risposta
                  • aevaundefined aeva

                    @jon_valdes @dotstdy my laptop has a recent-ish Xe gpu

                    aevaundefined Questo utente è esterno a questo forum
                    aevaundefined Questo utente è esterno a questo forum
                    aeva
                    scritto su ultima modifica di
                    #17

                    @jon_valdes @dotstdy it's bizarre seeing my 10 year old telephone's mali do better at... anything at all

                    aevaundefined 1 Risposta Ultima Risposta
                    • aevaundefined aeva

                      @jon_valdes @dotstdy it's bizarre seeing my 10 year old telephone's mali do better at... anything at all

                      aevaundefined Questo utente è esterno a questo forum
                      aevaundefined Questo utente è esterno a questo forum
                      aeva
                      scritto su ultima modifica di
                      #18

                      @jon_valdes @dotstdy though I guess the corner the intel case is cutting is where the slope starts to level out so I guess that makes sense. are CPU trig functions just as bad?

                      aevaundefined 1 Risposta Ultima Risposta
                      • aevaundefined aeva

                        @jon_valdes @dotstdy though I guess the corner the intel case is cutting is where the slope starts to level out so I guess that makes sense. are CPU trig functions just as bad?

                        aevaundefined Questo utente è esterno a questo forum
                        aevaundefined Questo utente è esterno a questo forum
                        aeva
                        scritto su ultima modifica di
                        #19

                        @jon_valdes @dotstdy would mollytime get a warmer, fuller sound if i switched to expensive software sine waves :3

                        1 Risposta Ultima Risposta
                        Rispondi
                        • Topic risposta
                        Effettua l'accesso per rispondere
                        • Da Vecchi a Nuovi
                        • Da Nuovi a Vecchi
                        • Più Voti


                        Gli ultimi otto messaggi ricevuti dalla Federazione
                        • adriananselmoundefined
                          adriananselmo

                          @enzoa24 non ho il loro seguito e lasciare Instagram mi ansiava, ma anche rimanerci. Leggere il loro programma mi ha comunque incoraggiato. L'ho fatto in modo più istintivo e meno organizzato. Non avere il loro seguito ha anche dei vantaggi...

                          per saperne di più

                        • Enzo A24undefined
                          Enzo A24

                          @adriananselmo Buongiorno. Anch'io ho iniziato a seguire molto Valigia Blu, soprattutto dopo la loro scelta di abbandonare sia Facebook sia Twitter.

                          per saperne di più

                        • adriananselmoundefined
                          adriananselmo

                          @enzoa24 valigia blu... che mi ha anche ispirato a mollare Instagram

                          per saperne di più

                        • Yaku 🐗undefined
                          Yaku 🐗

                          @coso_come_se_chiama Pure l'intelligenza esiste da prima di Rampini, e in effetti non è automatico che lui ce l'abbia.
                          Come dargli torto?!

                          per saperne di più

                        • Enzo A24undefined
                          Enzo A24

                          Quali fonti d'informazioni italofone (blog, testate giornalistiche, agenzie di stampa) conoscete su Mastodon/sul Fediverso? Mi piacerebbe sapere quali hanno fatto il grande passo di spostarsi di qua.

                          per saperne di più

                        • Kai Kupferschmidtundefined
                          Kai Kupferschmidt

                          “But it is hard not to notice that, in the aggregate, something poisonous is in the architecture of its platforms and the way that our technologies demand not just our attention, but our most heightened emotions,”
                          Charlie Warzel wrote in his piece here:
                          https://www.theatlantic.com/technology/archive/2025/09/charlie-kirk-assassination-online-reaction/684201/?gift=bQgJMMVzeo8RHHcE1_KM0ZY_8qLLAueznc8lg3WkEto&utm_source=copy-link&utm_medium=social&utm_campaign=share

                          per saperne di più

                        • Kai Kupferschmidtundefined
                          Kai Kupferschmidt

                          Here are some pieces and journalists I actually learnt something from: @justinling on Kirk’s position in the MAGA movement including this line:

                          “In the same way that his beliefs do not justify his murder, his murder can’t justify his beliefs either.”

                          https://www.bugeyedandshameless.com/p/who-was-charlie-kirk-anyway

                          per saperne di più

                        • Kai Kupferschmidtundefined
                          Kai Kupferschmidt

                          The New York Times has rarely felt as hopelessly out of its depth as in the past two days or so. There is still much I admire, many journalists I respect and trust, but on the Charlie Kirk assassination it simply hasn’t been very informative - not to mention some atrocious opinion “journalism”.

                          per saperne di più
                        • Accedi

                        • Accedi o registrati per effettuare la ricerca.
                        Powered by NodeBB Contributors
                        • Primo post
                          Ultimo post