Constellation - Zudokakikuto/OreCZML GitHub Wiki

This page describes the content of a CZML document. Please read Get Started for an explanation of how a CZML document is put together. Implements : CZMLPrimaryObject

Extends : AbstractPrimaryObject

The constellation object build in the same time a certain amount of Satellite in a given number of plans.

Parameters

t - int : total number of satellites

p - int : number of orbital planes

f - int : phasing parameter

referenceOrbit - Orbit : orbit used as a refence to build all the orbits of the constellation

model3Dpath - String : a path to a 3D model for all satellites

Build

These arguments can be used to build a constellation object :

  • total number of satellite, the number of orbital planes, the phasing number, a orbit of reference :
Constellation constellation = new Constellation(t, p, f, referenceOrbit);
  • total number of satellite, the number of orbital planes, the phasing number, a orbit of reference, a path to a 3D model :
Constellation constellation = new Constellation(t, p, f, referenceOrbit, model3DPath);