I am trying to copy paste and compute the input given in this link for the movement of mars. But wolfram cloud gives error. https://reference.wolfram.com/language/ref/AstroGraphics.html
When compute below instruction
mars = AstroPosition[Entity["Planet", "Mars"], {"Equatorial", #}] & /@
DateRange["1 Jul 2022", "1 July 2023", "Week"];
I get the error shown below
"15/07/2022 12:00 am is not a valid location specification"
and similarly for some more dates.
DateObjectfunctions, likeAstroPosition[Entity["Planet", "Mars"], {"Equatorial", #}] & /@ DateRange[DateObject["1 Jul 2022"], DateObject["1 July 2023"], "Week"]– kirma Feb 11 '23 at 14:13Hereon the same session. It should return an estimate of your geographic position asGeoPosition. Maybe it hasn't been resolved for you? Cloud version works for me, but it also has a value forHere. – kirma Feb 11 '23 at 14:18"Here" command gets evaluated to my lat long. So it does get resolved. – shanrrg Feb 11 '23 at 16:08
DateRangemakes it also emit strings instead ofDateObjects(which is frankly, in my opinion, strange), and something in the machinery didn't like that... – kirma Feb 11 '23 at 16:21