**id** - String : Identification of the visibility cone, *default* : "VIS/[Name of the station]/[Name of the satellite].
**name** - String : Name of the visibility cone, *default* : "Frame of the station [name of the station] looking at [name of the satellite].
**Cylinder** - [Cylinder](Cylinder) : The cylinder object, that describes the geometric objects representing the visibility.
**availability** - [TimeInterval](https://cesium.com/learn/cesiumjs/ref-doc/TimeInterval.html) : Time interval where the visibility cone is displayed.
**position** - [Position](Position) : The position in a given frame of the visibility cone (usually on the ground station)
**angle of aperture** - Double : The angle of aperture of the station, *default* : 80.0°
##Intrinsic arguments
**TopocentricFrame** - [TopocentricFrame](https://www.orekit.org/site-orekit-development/apidocs/org/orekit/frames/TopocentricFrame.html) : The Orekit TopocentricFrame Object
# Build
These arguments can be used to build a visibility cone object :
* An id, a name, a cylinder, an availability : (**this visibility cone will have a fix height of a terrestrial radius**)
```Java
new VisibilityCone visibilityCone = new VisibilityCone(id, name, cylinder, avalability);
```
* An id, a name, a cylinder, an availability, a [Satellite](Satellite) : (**This constructor allows the visibility cone to reach only the given satellite, so the height is fixed to the altitude of the satellite**)
```Java
new VisibilityCone visibilityCone = new VisibilityCone(id, name, cylinder, avalabilityn satellite);
```
* A [CZMLGroundStation](CZMLGroundStation), a [Header](Header) :
```Java
new VisibilityCone visibilityCone = new VisibilityCone(groundStation, header);
```
* A [CZMLGroundStation](CZMLGroundStation), a [Header](Header), a [Satellite](Satellite) :
```Java
new VisibilityCone visibilityCone = new VisibilityCone(groundStation, satellite, header);
```
* A [CZMLGroundStation](CZMLGroundStation), a [Header](Header) , an angle of aperture :
```Java
new VisibilityCone visibilityCone = new VisibilityCone(groundStation, header, angleOfAperture);
```
* A [TopocentricFrame](https://www.orekit.org/site-orekit-development/apidocs/org/orekit/frames/TopocentricFrame.html), a [Satellite](Satellite), a [Header](Header) :
```Java
new VisibilityCone visibilityCone = new VisibilityCone(topocentricFrame, satellite, header);
```
* A [TopocentricFrame](https://www.orekit.org/site-orekit-development/apidocs/org/orekit/frames/TopocentricFrame.html), a [Satellite](Satellite), a [Header](Header), an angle of aperture :
```Java
new VisibilityCone visibilityCone = new VisibilityCone(topocentricFrame, satellite, header, angleOfAperture);