joshuaferrara / go-satellite

Calculate orbital information of satellites in GoLang.
BSD 2-Clause "Simplified" License
78 stars 27 forks source link

Make Satelitte Struct Publicy Accessable #23

Open manojpawarsj12 opened 6 months ago

manojpawarsj12 commented 6 months ago

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.