You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Yes.
I'd like a way to print the latitude and longitude of the State from the loggers. Currently, I'm writing the lat/long into each State and printing it from there. Since the data is constant (as it is based on the cell position), it should be stored in the Cell instead. However, I can't access the Cell from the State.
Describe the solution you'd like
A way of accessing the parent Cell from a State during printing. Maybe instead of using stream operators, an explicit std::string getString(const State& state, const Cell& parentCell) in the State class would work?
Describe alternatives you've considered
Storing the lat/long directly in the States
Thanks
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Yes.
I'd like a way to print the latitude and longitude of the State from the loggers. Currently, I'm writing the lat/long into each State and printing it from there. Since the data is constant (as it is based on the cell position), it should be stored in the Cell instead. However, I can't access the Cell from the State.
Describe the solution you'd like
A way of accessing the parent Cell from a State during printing. Maybe instead of using stream operators, an explicit
std::string getString(const State& state, const Cell& parentCell)
in the State class would work?Describe alternatives you've considered
Thanks
The text was updated successfully, but these errors were encountered: