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
I am currently utilizing the go-satellite package in a project and have encountered a limitation that is impacting my work. Specifically, my use case requires access to the jdsatepoch field in the Satellite struct. However, this field, along with several others, is not publicly accessible.
type Satellite struct {
Line1 string
Line2 string
}
At present, only the Line1 and Line2 fields of the Satellite struct are publicly accessible. Here is the current definition of the struct:
For the requirements of my project, I kindly request that all fields of the Satellite struct, including jdsatepoch, be made publicly accessible. This would significantly aid in my project and could potentially benefit other users of the package who may have similar needs.
The text was updated successfully, but these errors were encountered:
I am currently utilizing the go-satellite package in a project and have encountered a limitation that is impacting my work. Specifically, my use case requires access to the jdsatepoch field in the Satellite struct. However, this field, along with several others, is not publicly accessible.
At present, only the Line1 and Line2 fields of the Satellite struct are publicly accessible. Here is the current definition of the struct:
For the requirements of my project, I kindly request that all fields of the Satellite struct, including jdsatepoch, be made publicly accessible. This would significantly aid in my project and could potentially benefit other users of the package who may have similar needs.
The text was updated successfully, but these errors were encountered: