Description Usage Arguments Value See Also Examples
Functions for querying FSE flight logs.
fse_log_by_serial_from_id
queries flight log for specified
aircraft serialnumber
and that have id greater than formid
.
fse_log_by_key_from_id
queries flight log for entries
for associated with accesskey
with id numbers geater than fromid
.
fse_log_by_reg_from_id_group
queries flight logs by key
for from id from all group aircraft. List all log entries for associated
with all the aircraft of group with accesskey
and that have id number
higher than fromid
.
fse_log_by_reg_from_id
Flight log by aircraft
registration number from Id. List all log entries for associated with the
aircraft with aircraftreg
and that have id number higher than fromid
.
fse_log_by_serial_monthyear
– Query flight logs by aircraft
serial number, year and month.
fse_log_by_reg_monthyear
– Query flight logs by aircraft
registration number, year and month.
fse_log_by_key_monthyear
– Query flight logs by FSE access
key, year and month.
1 2 3 4 5 6 7 8 9 10 11 12 13 | fse_log_by_serial_from_id(serialnumber, fromid, ...)
fse_log_by_key_from_id(accesskey, fromid, ...)
fse_log_by_reg_from_id_group(accesskey, fromid, ...)
fse_log_by_reg_from_id(aircraftreg, fromid, ...)
fse_log_by_serial_monthyear(serialnumber, year, month, ...)
fse_log_by_reg_monthyear(aircraftreg, year, month, ...)
fse_log_by_key_monthyear(accesskey, year, month, ...)
|
serialnumber |
aircraft serial number |
fromid |
log entry id |
... |
other arguments passed to |
accesskey |
group's read access key |
aircraftreg |
aircraft registration number |
year, month |
year and month as integers |
Feed function returns a data.frame
(default) or xml_document
depending on
the value of format
argument (see fse_api
for details).
All these functions return data.frame/XML with the following columns/tags:
Id
– Log entry id
Type
– Entry type
Time
– Time as yyyy/mm/dd
Distance
– If Type = flight
distance flown, 0
otherwise
Pilot
– Pilot name
SerialNumber
– Aircraft serial number
Aircraft
– Registration id
MakeModel
– Aircraft make and model
From
– ICAO from
To
– ICAO to
TotalEngineTime
– Total engine time as hh:mm
FlightTime
– Flight time as hh:mm
GroupName
– For group flights the group name or ""
otherwise
Income
PilotFee
CrewCost
BookingFee
Bonus
FuelCost
GCF
– ?
RentalPrice
RentalType
– ("hoobs); ("tacho")
RentalUnits
–
RentalCost
Other FSE feeds:
fse_aircraft_aliases()
,
fse_aircraft_configs()
,
fse_aircraft_status_by_registration()
,
fse_aircraft
,
fse_assignments_by_key()
,
fse_commodities_by_key()
,
fse_facilities_by_key()
,
fse_fbo_summary()
,
fse_fbo
,
fse_group_members()
,
fse_jobs
,
fse_payments
,
fse_statistics_by_key()
1 2 3 4 5 6 7 8 9 10 11 12 | ## Not run:
r <- fse_log_by_serial_from_id(32019, 1)
## End(Not run)
## Not run:
r <- fse_log_by_serial_monthyear(6930, 2016, 4)
## End(Not run)
## Not run:
r <- fse_log_by_reg_monthyear("SP-4AX", 2020, 2)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.