Mise à jour de CZMLGroundStation authored by Julien LEBLOND's avatar Julien LEBLOND
...@@ -75,14 +75,14 @@ The CZML ground stration object can be build with : ...@@ -75,14 +75,14 @@ The CZML ground stration object can be build with :
CZMLGroundStation groundStation = new CZMLGroundStation(name, id, availability, position, billboard); CZMLGroundStation groundStation = new CZMLGroundStation(name, id, availability, position, billboard);
``` ```
* An [TopocentricFrame](https://www.orekit.org/site-orekit-development/apidocs/org/orekit/frames/TopocentricFrame.html), a [Header](Header) : * An [TopocentricFrame](https://www.orekit.org/site-orekit-development/apidocs/org/orekit/frames/TopocentricFrame.html) :
```Java ```Java
CZMLGroundStation groundStation = new CZMLGroundStation(topocentricFrame, header); CZMLGroundStation groundStation = new CZMLGroundStation(topocentricFrame);
``` ```
* A [List of TopocentricFrame](https://www.orekit.org/site-orekit-development/apidocs/org/orekit/frames/TopocentricFrame.html), a [Header](Header) : (**This function can create several groundStation, with each topocentricFrame assigned to each station**) * A [List of TopocentricFrame](https://www.orekit.org/site-orekit-development/apidocs/org/orekit/frames/TopocentricFrame.html) : (**This function can create several groundStation, with each topocentricFrame assigned to each station**)
```Java ```Java
CZMLGroundStation groundStation = new CZMLGroundStation(topocentricFrameList, header); CZMLGroundStation groundStation = new CZMLGroundStation(topocentricFrameList);
``` ```
\ No newline at end of file