Profile image

FIXED / (Help) A line of funky trees, and I’m not sure why it’s broken

19.0k Axartar  2.0 years ago

((Longitude > (-79))&(Latitude > (-79)))&((Longitude < 621)&(Latitude < 621))
Should output 1 if between those coordinates?

  • Log in to leave a comment
  • Profile image
    19.0k Axartar

    OK turns out I’m a dumbass and had my coordinates all wrong so it wasn’t working, tysm regardless, it was much neater than what I’d written.@DeveloperKorzalerke I’d left my latitude thing in seconds so it was just wrong coordinates

    2.0 years ago
  • Profile image
    19.0k Axartar

    Ooohh, ok thank you, I’ll have a try @DeveloperKorzalerke

    2.0 years ago
  • Profile image
    11.5k JesusChrist

    Try this:

    (Latitude > -79 & Longitude > -79 & Latitude < 621 & Longitude < 621)

    It should output True if all conditions are met and False if not.

    2.0 years ago
  • Profile image

    @Axartar
    ah.

    2.0 years ago
  • Profile image
    19.0k Axartar

    I guess I could try with = instead of AND. @ZeroWithSlashedO

    2.0 years ago
  • Profile image
    19.0k Axartar

    Basically. It’s checking if the current latitude and longitude are greater than (-79) and less than (621)@ZeroWithSlashedO

    2.0 years ago
  • Profile image

    Honestly, I don't understand even in the slightest about this code. And I thought I had a basic understanding of FT.

    What are you trying to achieve with this code?

    2.0 years ago
  • Profile image
    19.0k Axartar

    Any help would be great, I’m pretty unfamiliar with any funky trees past basic level

    2.0 years ago