%API_NAME%

Default

contrails


/contrails

Usage and SDK Samples

curl -X POST -H "x-api-key: [[apiKey]]" "%API_URL%/contrails?provider=&referenceTime="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure API key authorization: api_key
        ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
        api_key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //api_key.setApiKeyPrefix("Token");

        DefaultApi apiInstance = new DefaultApi();
        array[Waypoint] body = ; // array[Waypoint] | 
        String referenceTime = referenceTime_example; // String | 
        String provider = provider_example; // String | 
        try {
            ArrayOfTurbulenceResult result = apiInstance.contrails(body, referenceTime, provider);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#contrails");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        array[Waypoint] body = ; // array[Waypoint] | 
        String referenceTime = referenceTime_example; // String | 
        String provider = provider_example; // String | 
        try {
            ArrayOfTurbulenceResult result = apiInstance.contrails(body, referenceTime, provider);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#contrails");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure API key authorization: (authentication scheme: api_key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"x-api-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"x-api-key"];
array[Waypoint] *body = ; // 
String *referenceTime = referenceTime_example; // 
String *provider = provider_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance contrailsWith:body
    referenceTime:referenceTime
    provider:provider
              completionHandler: ^(ArrayOfTurbulenceResult output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiName = require('api_name');
var defaultClient = ApiName.ApiClient.instance;

// Configure API key authorization: api_key
var api_key = defaultClient.authentications['api_key'];
api_key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.apiKeyPrefix['x-api-key'] = "Token"

var api = new ApiName.DefaultApi()
var body = ; // {{array[Waypoint]}} 
var referenceTime = referenceTime_example; // {{String}} 
var opts = { 
  'provider': provider_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.contrails(bodyreferenceTime, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class contrailsExample
    {
        public void main()
        {

            // Configure API key authorization: api_key
            Configuration.Default.ApiKey.Add("x-api-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("x-api-key", "Bearer");

            var apiInstance = new DefaultApi();
            var body = new array[Waypoint](); // array[Waypoint] | 
            var referenceTime = referenceTime_example;  // String | 
            var provider = provider_example;  // String |  (optional) 

            try
            {
                ArrayOfTurbulenceResult result = apiInstance.contrails(body, referenceTime, provider);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.contrails: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: api_key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('x-api-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('x-api-key', 'Bearer');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // array[Waypoint] | 
$referenceTime = referenceTime_example; // String | 
$provider = provider_example; // String | 

try {
    $result = $api_instance->contrails($body, $referenceTime, $provider);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->contrails: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

# Configure API key authorization: api_key
$WWW::SwaggerClient::Configuration::api_key->{'x-api-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'x-api-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = [WWW::SwaggerClient::Object::array[Waypoint]->new()]; # array[Waypoint] | 
my $referenceTime = referenceTime_example; # String | 
my $provider = provider_example; # String | 

eval { 
    my $result = $api_instance->contrails(body => $body, referenceTime => $referenceTime, provider => $provider);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->contrails: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: api_key
swagger_client.configuration.api_key['x-api-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['x-api-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.DefaultApi()
body =  # array[Waypoint] | 
referenceTime = referenceTime_example # String | 
provider = provider_example # String |  (optional)

try: 
    api_response = api_instance.contrails(body, referenceTime, provider=provider)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->contrails: %s\n" % e)

Parameters

Body parameters
Name Description
body *
Query parameters
Name Description
provider
String
referenceTime*
String
Required

Responses

Status: 200 - 200 response


datatypeAll


/{datatype}/all

Usage and SDK Samples

curl -X GET -H "x-api-key: [[apiKey]]" "%API_URL%/{datatype}/all?provider="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure API key authorization: api_key
        ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
        api_key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //api_key.setApiKeyPrefix("Token");

        DefaultApi apiInstance = new DefaultApi();
        String datatype = datatype_example; // String | 
        String provider = provider_example; // String | 
        try {
            array['Date'] result = apiInstance.datatypeAll(datatype, provider);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#datatypeAll");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String datatype = datatype_example; // String | 
        String provider = provider_example; // String | 
        try {
            array['Date'] result = apiInstance.datatypeAll(datatype, provider);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#datatypeAll");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure API key authorization: (authentication scheme: api_key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"x-api-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"x-api-key"];
String *datatype = datatype_example; // 
String *provider = provider_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance datatypeAllWith:datatype
    provider:provider
              completionHandler: ^(array['Date'] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiName = require('api_name');
var defaultClient = ApiName.ApiClient.instance;

// Configure API key authorization: api_key
var api_key = defaultClient.authentications['api_key'];
api_key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.apiKeyPrefix['x-api-key'] = "Token"

var api = new ApiName.DefaultApi()
var datatype = datatype_example; // {{String}} 
var opts = { 
  'provider': provider_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.datatypeAll(datatype, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class datatypeAllExample
    {
        public void main()
        {

            // Configure API key authorization: api_key
            Configuration.Default.ApiKey.Add("x-api-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("x-api-key", "Bearer");

            var apiInstance = new DefaultApi();
            var datatype = datatype_example;  // String | 
            var provider = provider_example;  // String |  (optional) 

            try
            {
                array['Date'] result = apiInstance.datatypeAll(datatype, provider);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.datatypeAll: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: api_key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('x-api-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('x-api-key', 'Bearer');

$api_instance = new Swagger\Client\ApiDefaultApi();
$datatype = datatype_example; // String | 
$provider = provider_example; // String | 

try {
    $result = $api_instance->datatypeAll($datatype, $provider);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->datatypeAll: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

# Configure API key authorization: api_key
$WWW::SwaggerClient::Configuration::api_key->{'x-api-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'x-api-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $datatype = datatype_example; # String | 
my $provider = provider_example; # String | 

eval { 
    my $result = $api_instance->datatypeAll(datatype => $datatype, provider => $provider);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->datatypeAll: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: api_key
swagger_client.configuration.api_key['x-api-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['x-api-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.DefaultApi()
datatype = datatype_example # String | 
provider = provider_example # String |  (optional)

try: 
    api_response = api_instance.datatype_all(datatype, provider=provider)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->datatypeAll: %s\n" % e)

Parameters

Path parameters
Name Description
datatype*
String
Required
Query parameters
Name Description
provider
String

Responses

Status: 200 - 200 response


datatypeInfo


/{datatype}/info

Usage and SDK Samples

curl -X GET -H "x-api-key: [[apiKey]]" "%API_URL%/{datatype}/info?provider=&referenceTime="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure API key authorization: api_key
        ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
        api_key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //api_key.setApiKeyPrefix("Token");

        DefaultApi apiInstance = new DefaultApi();
        String datatype = datatype_example; // String | 
        String referenceTime = referenceTime_example; // String | 
        String provider = provider_example; // String | 
        try {
            UpperAirDataInfo result = apiInstance.datatypeInfo(datatype, referenceTime, provider);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#datatypeInfo");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String datatype = datatype_example; // String | 
        String referenceTime = referenceTime_example; // String | 
        String provider = provider_example; // String | 
        try {
            UpperAirDataInfo result = apiInstance.datatypeInfo(datatype, referenceTime, provider);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#datatypeInfo");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure API key authorization: (authentication scheme: api_key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"x-api-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"x-api-key"];
String *datatype = datatype_example; // 
String *referenceTime = referenceTime_example; // 
String *provider = provider_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance datatypeInfoWith:datatype
    referenceTime:referenceTime
    provider:provider
              completionHandler: ^(UpperAirDataInfo output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiName = require('api_name');
var defaultClient = ApiName.ApiClient.instance;

// Configure API key authorization: api_key
var api_key = defaultClient.authentications['api_key'];
api_key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.apiKeyPrefix['x-api-key'] = "Token"

var api = new ApiName.DefaultApi()
var datatype = datatype_example; // {{String}} 
var referenceTime = referenceTime_example; // {{String}} 
var opts = { 
  'provider': provider_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.datatypeInfo(datatype, referenceTime, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class datatypeInfoExample
    {
        public void main()
        {

            // Configure API key authorization: api_key
            Configuration.Default.ApiKey.Add("x-api-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("x-api-key", "Bearer");

            var apiInstance = new DefaultApi();
            var datatype = datatype_example;  // String | 
            var referenceTime = referenceTime_example;  // String | 
            var provider = provider_example;  // String |  (optional) 

            try
            {
                UpperAirDataInfo result = apiInstance.datatypeInfo(datatype, referenceTime, provider);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.datatypeInfo: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: api_key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('x-api-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('x-api-key', 'Bearer');

$api_instance = new Swagger\Client\ApiDefaultApi();
$datatype = datatype_example; // String | 
$referenceTime = referenceTime_example; // String | 
$provider = provider_example; // String | 

try {
    $result = $api_instance->datatypeInfo($datatype, $referenceTime, $provider);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->datatypeInfo: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

# Configure API key authorization: api_key
$WWW::SwaggerClient::Configuration::api_key->{'x-api-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'x-api-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $datatype = datatype_example; # String | 
my $referenceTime = referenceTime_example; # String | 
my $provider = provider_example; # String | 

eval { 
    my $result = $api_instance->datatypeInfo(datatype => $datatype, referenceTime => $referenceTime, provider => $provider);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->datatypeInfo: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: api_key
swagger_client.configuration.api_key['x-api-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['x-api-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.DefaultApi()
datatype = datatype_example # String | 
referenceTime = referenceTime_example # String | 
provider = provider_example # String |  (optional)

try: 
    api_response = api_instance.datatype_info(datatype, referenceTime, provider=provider)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->datatypeInfo: %s\n" % e)

Parameters

Path parameters
Name Description
datatype*
String
Required
Query parameters
Name Description
provider
String
referenceTime*
String
Required

Responses

Status: 200 - 200 response


datatypeLatest


/{datatype}/latest

Usage and SDK Samples

curl -X GET -H "x-api-key: [[apiKey]]" "%API_URL%/{datatype}/latest?provider="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure API key authorization: api_key
        ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
        api_key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //api_key.setApiKeyPrefix("Token");

        DefaultApi apiInstance = new DefaultApi();
        String datatype = datatype_example; // String | 
        String provider = provider_example; // String | 
        try {
            'Date' result = apiInstance.datatypeLatest(datatype, provider);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#datatypeLatest");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String datatype = datatype_example; // String | 
        String provider = provider_example; // String | 
        try {
            'Date' result = apiInstance.datatypeLatest(datatype, provider);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#datatypeLatest");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure API key authorization: (authentication scheme: api_key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"x-api-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"x-api-key"];
String *datatype = datatype_example; // 
String *provider = provider_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance datatypeLatestWith:datatype
    provider:provider
              completionHandler: ^('Date' output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiName = require('api_name');
var defaultClient = ApiName.ApiClient.instance;

// Configure API key authorization: api_key
var api_key = defaultClient.authentications['api_key'];
api_key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.apiKeyPrefix['x-api-key'] = "Token"

var api = new ApiName.DefaultApi()
var datatype = datatype_example; // {{String}} 
var opts = { 
  'provider': provider_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.datatypeLatest(datatype, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class datatypeLatestExample
    {
        public void main()
        {

            // Configure API key authorization: api_key
            Configuration.Default.ApiKey.Add("x-api-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("x-api-key", "Bearer");

            var apiInstance = new DefaultApi();
            var datatype = datatype_example;  // String | 
            var provider = provider_example;  // String |  (optional) 

            try
            {
                'Date' result = apiInstance.datatypeLatest(datatype, provider);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.datatypeLatest: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: api_key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('x-api-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('x-api-key', 'Bearer');

$api_instance = new Swagger\Client\ApiDefaultApi();
$datatype = datatype_example; // String | 
$provider = provider_example; // String | 

try {
    $result = $api_instance->datatypeLatest($datatype, $provider);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->datatypeLatest: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

# Configure API key authorization: api_key
$WWW::SwaggerClient::Configuration::api_key->{'x-api-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'x-api-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $datatype = datatype_example; # String | 
my $provider = provider_example; # String | 

eval { 
    my $result = $api_instance->datatypeLatest(datatype => $datatype, provider => $provider);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->datatypeLatest: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: api_key
swagger_client.configuration.api_key['x-api-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['x-api-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.DefaultApi()
datatype = datatype_example # String | 
provider = provider_example # String |  (optional)

try: 
    api_response = api_instance.datatype_latest(datatype, provider=provider)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->datatypeLatest: %s\n" % e)

Parameters

Path parameters
Name Description
datatype*
String
Required
Query parameters
Name Description
provider
String

Responses

Status: 200 - 200 response


datatypeLatestNotOlderThan


/{datatype}/latestNotOlderThan

Usage and SDK Samples

curl -X GET -H "x-api-key: [[apiKey]]" "%API_URL%/{datatype}/latestNotOlderThan?provider=&minutes="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure API key authorization: api_key
        ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
        api_key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //api_key.setApiKeyPrefix("Token");

        DefaultApi apiInstance = new DefaultApi();
        String datatype = datatype_example; // String | 
        String minutes = minutes_example; // String | 
        String provider = provider_example; // String | 
        try {
            'Date' result = apiInstance.datatypeLatestNotOlderThan(datatype, minutes, provider);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#datatypeLatestNotOlderThan");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String datatype = datatype_example; // String | 
        String minutes = minutes_example; // String | 
        String provider = provider_example; // String | 
        try {
            'Date' result = apiInstance.datatypeLatestNotOlderThan(datatype, minutes, provider);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#datatypeLatestNotOlderThan");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure API key authorization: (authentication scheme: api_key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"x-api-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"x-api-key"];
String *datatype = datatype_example; // 
String *minutes = minutes_example; // 
String *provider = provider_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance datatypeLatestNotOlderThanWith:datatype
    minutes:minutes
    provider:provider
              completionHandler: ^('Date' output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiName = require('api_name');
var defaultClient = ApiName.ApiClient.instance;

// Configure API key authorization: api_key
var api_key = defaultClient.authentications['api_key'];
api_key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.apiKeyPrefix['x-api-key'] = "Token"

var api = new ApiName.DefaultApi()
var datatype = datatype_example; // {{String}} 
var minutes = minutes_example; // {{String}} 
var opts = { 
  'provider': provider_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.datatypeLatestNotOlderThan(datatype, minutes, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class datatypeLatestNotOlderThanExample
    {
        public void main()
        {

            // Configure API key authorization: api_key
            Configuration.Default.ApiKey.Add("x-api-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("x-api-key", "Bearer");

            var apiInstance = new DefaultApi();
            var datatype = datatype_example;  // String | 
            var minutes = minutes_example;  // String | 
            var provider = provider_example;  // String |  (optional) 

            try
            {
                'Date' result = apiInstance.datatypeLatestNotOlderThan(datatype, minutes, provider);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.datatypeLatestNotOlderThan: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: api_key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('x-api-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('x-api-key', 'Bearer');

$api_instance = new Swagger\Client\ApiDefaultApi();
$datatype = datatype_example; // String | 
$minutes = minutes_example; // String | 
$provider = provider_example; // String | 

try {
    $result = $api_instance->datatypeLatestNotOlderThan($datatype, $minutes, $provider);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->datatypeLatestNotOlderThan: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

# Configure API key authorization: api_key
$WWW::SwaggerClient::Configuration::api_key->{'x-api-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'x-api-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $datatype = datatype_example; # String | 
my $minutes = minutes_example; # String | 
my $provider = provider_example; # String | 

eval { 
    my $result = $api_instance->datatypeLatestNotOlderThan(datatype => $datatype, minutes => $minutes, provider => $provider);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->datatypeLatestNotOlderThan: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: api_key
swagger_client.configuration.api_key['x-api-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['x-api-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.DefaultApi()
datatype = datatype_example # String | 
minutes = minutes_example # String | 
provider = provider_example # String |  (optional)

try: 
    api_response = api_instance.datatype_latest_not_older_than(datatype, minutes, provider=provider)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->datatypeLatestNotOlderThan: %s\n" % e)

Parameters

Path parameters
Name Description
datatype*
String
Required
Query parameters
Name Description
provider
String
minutes*
String
Required

Responses

Status: 200 - 200 response


datatypeLatestWithForecastTime


/{datatype}/latestWithForecastTime

Usage and SDK Samples

curl -X GET -H "x-api-key: [[apiKey]]" "%API_URL%/{datatype}/latestWithForecastTime?provider=&forecastTime="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure API key authorization: api_key
        ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
        api_key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //api_key.setApiKeyPrefix("Token");

        DefaultApi apiInstance = new DefaultApi();
        String datatype = datatype_example; // String | 
        String forecastTime = forecastTime_example; // String | 
        String provider = provider_example; // String | 
        try {
            'String' result = apiInstance.datatypeLatestWithForecastTime(datatype, forecastTime, provider);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#datatypeLatestWithForecastTime");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String datatype = datatype_example; // String | 
        String forecastTime = forecastTime_example; // String | 
        String provider = provider_example; // String | 
        try {
            'String' result = apiInstance.datatypeLatestWithForecastTime(datatype, forecastTime, provider);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#datatypeLatestWithForecastTime");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure API key authorization: (authentication scheme: api_key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"x-api-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"x-api-key"];
String *datatype = datatype_example; // 
String *forecastTime = forecastTime_example; // 
String *provider = provider_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance datatypeLatestWithForecastTimeWith:datatype
    forecastTime:forecastTime
    provider:provider
              completionHandler: ^('String' output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiName = require('api_name');
var defaultClient = ApiName.ApiClient.instance;

// Configure API key authorization: api_key
var api_key = defaultClient.authentications['api_key'];
api_key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.apiKeyPrefix['x-api-key'] = "Token"

var api = new ApiName.DefaultApi()
var datatype = datatype_example; // {{String}} 
var forecastTime = forecastTime_example; // {{String}} 
var opts = { 
  'provider': provider_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.datatypeLatestWithForecastTime(datatype, forecastTime, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class datatypeLatestWithForecastTimeExample
    {
        public void main()
        {

            // Configure API key authorization: api_key
            Configuration.Default.ApiKey.Add("x-api-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("x-api-key", "Bearer");

            var apiInstance = new DefaultApi();
            var datatype = datatype_example;  // String | 
            var forecastTime = forecastTime_example;  // String | 
            var provider = provider_example;  // String |  (optional) 

            try
            {
                'String' result = apiInstance.datatypeLatestWithForecastTime(datatype, forecastTime, provider);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.datatypeLatestWithForecastTime: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: api_key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('x-api-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('x-api-key', 'Bearer');

$api_instance = new Swagger\Client\ApiDefaultApi();
$datatype = datatype_example; // String | 
$forecastTime = forecastTime_example; // String | 
$provider = provider_example; // String | 

try {
    $result = $api_instance->datatypeLatestWithForecastTime($datatype, $forecastTime, $provider);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->datatypeLatestWithForecastTime: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

# Configure API key authorization: api_key
$WWW::SwaggerClient::Configuration::api_key->{'x-api-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'x-api-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $datatype = datatype_example; # String | 
my $forecastTime = forecastTime_example; # String | 
my $provider = provider_example; # String | 

eval { 
    my $result = $api_instance->datatypeLatestWithForecastTime(datatype => $datatype, forecastTime => $forecastTime, provider => $provider);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->datatypeLatestWithForecastTime: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: api_key
swagger_client.configuration.api_key['x-api-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['x-api-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.DefaultApi()
datatype = datatype_example # String | 
forecastTime = forecastTime_example # String | 
provider = provider_example # String |  (optional)

try: 
    api_response = api_instance.datatype_latest_with_forecast_time(datatype, forecastTime, provider=provider)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->datatypeLatestWithForecastTime: %s\n" % e)

Parameters

Path parameters
Name Description
datatype*
String
Required
Query parameters
Name Description
provider
String
forecastTime*
String
Required

Responses

Status: 200 - 200 response


dkult


/dkult

Usage and SDK Samples

curl -X POST -H "x-api-key: [[apiKey]]" "%API_URL%/dkult?provider=&referenceTime="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure API key authorization: api_key
        ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
        api_key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //api_key.setApiKeyPrefix("Token");

        DefaultApi apiInstance = new DefaultApi();
        array[Waypoint] body = ; // array[Waypoint] | 
        String referenceTime = referenceTime_example; // String | 
        String provider = provider_example; // String | 
        try {
            ArrayOfDkultResult result = apiInstance.dkult(body, referenceTime, provider);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#dkult");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        array[Waypoint] body = ; // array[Waypoint] | 
        String referenceTime = referenceTime_example; // String | 
        String provider = provider_example; // String | 
        try {
            ArrayOfDkultResult result = apiInstance.dkult(body, referenceTime, provider);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#dkult");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure API key authorization: (authentication scheme: api_key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"x-api-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"x-api-key"];
array[Waypoint] *body = ; // 
String *referenceTime = referenceTime_example; // 
String *provider = provider_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance dkultWith:body
    referenceTime:referenceTime
    provider:provider
              completionHandler: ^(ArrayOfDkultResult output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiName = require('api_name');
var defaultClient = ApiName.ApiClient.instance;

// Configure API key authorization: api_key
var api_key = defaultClient.authentications['api_key'];
api_key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.apiKeyPrefix['x-api-key'] = "Token"

var api = new ApiName.DefaultApi()
var body = ; // {{array[Waypoint]}} 
var referenceTime = referenceTime_example; // {{String}} 
var opts = { 
  'provider': provider_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.dkult(bodyreferenceTime, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class dkultExample
    {
        public void main()
        {

            // Configure API key authorization: api_key
            Configuration.Default.ApiKey.Add("x-api-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("x-api-key", "Bearer");

            var apiInstance = new DefaultApi();
            var body = new array[Waypoint](); // array[Waypoint] | 
            var referenceTime = referenceTime_example;  // String | 
            var provider = provider_example;  // String |  (optional) 

            try
            {
                ArrayOfDkultResult result = apiInstance.dkult(body, referenceTime, provider);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.dkult: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: api_key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('x-api-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('x-api-key', 'Bearer');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // array[Waypoint] | 
$referenceTime = referenceTime_example; // String | 
$provider = provider_example; // String | 

try {
    $result = $api_instance->dkult($body, $referenceTime, $provider);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->dkult: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

# Configure API key authorization: api_key
$WWW::SwaggerClient::Configuration::api_key->{'x-api-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'x-api-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = [WWW::SwaggerClient::Object::array[Waypoint]->new()]; # array[Waypoint] | 
my $referenceTime = referenceTime_example; # String | 
my $provider = provider_example; # String | 

eval { 
    my $result = $api_instance->dkult(body => $body, referenceTime => $referenceTime, provider => $provider);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->dkult: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: api_key
swagger_client.configuration.api_key['x-api-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['x-api-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.DefaultApi()
body =  # array[Waypoint] | 
referenceTime = referenceTime_example # String | 
provider = provider_example # String |  (optional)

try: 
    api_response = api_instance.dkult(body, referenceTime, provider=provider)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->dkult: %s\n" % e)

Parameters

Body parameters
Name Description
body *
Query parameters
Name Description
provider
String
referenceTime*
String
Required

Responses

Status: 200 - 200 response


geojson


/geojson

Usage and SDK Samples

curl -X GET -H "x-api-key: [[apiKey]]" "%API_URL%/geojson?provider=&type=&referenceTime=&flightLevel=&forecastTime="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure API key authorization: api_key
        ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
        api_key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //api_key.setApiKeyPrefix("Token");

        DefaultApi apiInstance = new DefaultApi();
        String referenceTime = referenceTime_example; // String | 
        String flightLevel = flightLevel_example; // String | 
        String forecastTime = forecastTime_example; // String | 
        String provider = provider_example; // String | 
        String type = type_example; // String | 
        try {
            Geojson result = apiInstance.geojson(referenceTime, flightLevel, forecastTime, provider, type);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#geojson");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String referenceTime = referenceTime_example; // String | 
        String flightLevel = flightLevel_example; // String | 
        String forecastTime = forecastTime_example; // String | 
        String provider = provider_example; // String | 
        String type = type_example; // String | 
        try {
            Geojson result = apiInstance.geojson(referenceTime, flightLevel, forecastTime, provider, type);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#geojson");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure API key authorization: (authentication scheme: api_key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"x-api-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"x-api-key"];
String *referenceTime = referenceTime_example; // 
String *flightLevel = flightLevel_example; // 
String *forecastTime = forecastTime_example; // 
String *provider = provider_example; //  (optional)
String *type = type_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance geojsonWith:referenceTime
    flightLevel:flightLevel
    forecastTime:forecastTime
    provider:provider
    type:type
              completionHandler: ^(Geojson output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiName = require('api_name');
var defaultClient = ApiName.ApiClient.instance;

// Configure API key authorization: api_key
var api_key = defaultClient.authentications['api_key'];
api_key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.apiKeyPrefix['x-api-key'] = "Token"

var api = new ApiName.DefaultApi()
var referenceTime = referenceTime_example; // {{String}} 
var flightLevel = flightLevel_example; // {{String}} 
var forecastTime = forecastTime_example; // {{String}} 
var opts = { 
  'provider': provider_example, // {{String}} 
  'type': type_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.geojson(referenceTime, flightLevel, forecastTime, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class geojsonExample
    {
        public void main()
        {

            // Configure API key authorization: api_key
            Configuration.Default.ApiKey.Add("x-api-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("x-api-key", "Bearer");

            var apiInstance = new DefaultApi();
            var referenceTime = referenceTime_example;  // String | 
            var flightLevel = flightLevel_example;  // String | 
            var forecastTime = forecastTime_example;  // String | 
            var provider = provider_example;  // String |  (optional) 
            var type = type_example;  // String |  (optional) 

            try
            {
                Geojson result = apiInstance.geojson(referenceTime, flightLevel, forecastTime, provider, type);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.geojson: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: api_key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('x-api-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('x-api-key', 'Bearer');

$api_instance = new Swagger\Client\ApiDefaultApi();
$referenceTime = referenceTime_example; // String | 
$flightLevel = flightLevel_example; // String | 
$forecastTime = forecastTime_example; // String | 
$provider = provider_example; // String | 
$type = type_example; // String | 

try {
    $result = $api_instance->geojson($referenceTime, $flightLevel, $forecastTime, $provider, $type);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->geojson: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

# Configure API key authorization: api_key
$WWW::SwaggerClient::Configuration::api_key->{'x-api-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'x-api-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $referenceTime = referenceTime_example; # String | 
my $flightLevel = flightLevel_example; # String | 
my $forecastTime = forecastTime_example; # String | 
my $provider = provider_example; # String | 
my $type = type_example; # String | 

eval { 
    my $result = $api_instance->geojson(referenceTime => $referenceTime, flightLevel => $flightLevel, forecastTime => $forecastTime, provider => $provider, type => $type);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->geojson: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: api_key
swagger_client.configuration.api_key['x-api-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['x-api-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.DefaultApi()
referenceTime = referenceTime_example # String | 
flightLevel = flightLevel_example # String | 
forecastTime = forecastTime_example # String | 
provider = provider_example # String |  (optional)
type = type_example # String |  (optional)

try: 
    api_response = api_instance.geojson(referenceTime, flightLevel, forecastTime, provider=provider, type=type)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->geojson: %s\n" % e)

Parameters

Query parameters
Name Description
provider
String
type
String
referenceTime*
String
Required
flightLevel*
String
Required
forecastTime*
String
Required

Responses

Status: 200 - 200 response


icing


/icing

Usage and SDK Samples

curl -X POST -H "x-api-key: [[apiKey]]" "%API_URL%/icing?provider=&referenceTime="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure API key authorization: api_key
        ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
        api_key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //api_key.setApiKeyPrefix("Token");

        DefaultApi apiInstance = new DefaultApi();
        array[Waypoint] body = ; // array[Waypoint] | 
        String referenceTime = referenceTime_example; // String | 
        String provider = provider_example; // String | 
        try {
            ArrayOfTurbulenceResult result = apiInstance.icing(body, referenceTime, provider);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#icing");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        array[Waypoint] body = ; // array[Waypoint] | 
        String referenceTime = referenceTime_example; // String | 
        String provider = provider_example; // String | 
        try {
            ArrayOfTurbulenceResult result = apiInstance.icing(body, referenceTime, provider);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#icing");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure API key authorization: (authentication scheme: api_key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"x-api-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"x-api-key"];
array[Waypoint] *body = ; // 
String *referenceTime = referenceTime_example; // 
String *provider = provider_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance icingWith:body
    referenceTime:referenceTime
    provider:provider
              completionHandler: ^(ArrayOfTurbulenceResult output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiName = require('api_name');
var defaultClient = ApiName.ApiClient.instance;

// Configure API key authorization: api_key
var api_key = defaultClient.authentications['api_key'];
api_key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.apiKeyPrefix['x-api-key'] = "Token"

var api = new ApiName.DefaultApi()
var body = ; // {{array[Waypoint]}} 
var referenceTime = referenceTime_example; // {{String}} 
var opts = { 
  'provider': provider_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.icing(bodyreferenceTime, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class icingExample
    {
        public void main()
        {

            // Configure API key authorization: api_key
            Configuration.Default.ApiKey.Add("x-api-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("x-api-key", "Bearer");

            var apiInstance = new DefaultApi();
            var body = new array[Waypoint](); // array[Waypoint] | 
            var referenceTime = referenceTime_example;  // String | 
            var provider = provider_example;  // String |  (optional) 

            try
            {
                ArrayOfTurbulenceResult result = apiInstance.icing(body, referenceTime, provider);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.icing: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: api_key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('x-api-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('x-api-key', 'Bearer');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // array[Waypoint] | 
$referenceTime = referenceTime_example; // String | 
$provider = provider_example; // String | 

try {
    $result = $api_instance->icing($body, $referenceTime, $provider);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->icing: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

# Configure API key authorization: api_key
$WWW::SwaggerClient::Configuration::api_key->{'x-api-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'x-api-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = [WWW::SwaggerClient::Object::array[Waypoint]->new()]; # array[Waypoint] | 
my $referenceTime = referenceTime_example; # String | 
my $provider = provider_example; # String | 

eval { 
    my $result = $api_instance->icing(body => $body, referenceTime => $referenceTime, provider => $provider);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->icing: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: api_key
swagger_client.configuration.api_key['x-api-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['x-api-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.DefaultApi()
body =  # array[Waypoint] | 
referenceTime = referenceTime_example # String | 
provider = provider_example # String |  (optional)

try: 
    api_response = api_instance.icing(body, referenceTime, provider=provider)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->icing: %s\n" % e)

Parameters

Body parameters
Name Description
body *
Query parameters
Name Description
provider
String
referenceTime*
String
Required

Responses

Status: 200 - 200 response


info


/

Usage and SDK Samples

curl -X GET "%API_URL%/"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.info();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#info");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        try {
            apiInstance.info();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#info");
            e.printStackTrace();
        }
    }
}

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance infoWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiName = require('api_name');

var api = new ApiName.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.info(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class infoExample
    {
        public void main()
        {

            var apiInstance = new DefaultApi();

            try
            {
                apiInstance.info();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.info: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();

try {
    $api_instance->info();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->info: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();

eval { 
    $api_instance->info();
};
if ($@) {
    warn "Exception when calling DefaultApi->info: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.DefaultApi()

try: 
    api_instance.info()
except ApiException as e:
    print("Exception when calling DefaultApi->info: %s\n" % e)

Parameters

Responses

Status: 200 - 200 response

Name Type Format Description
Content-Type String

terrain


/terrain

Usage and SDK Samples

curl -X POST -H "x-api-key: [[apiKey]]" "%API_URL%/terrain?provider=&referenceTime="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure API key authorization: api_key
        ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
        api_key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //api_key.setApiKeyPrefix("Token");

        DefaultApi apiInstance = new DefaultApi();
        array[Waypoint] body = ; // array[Waypoint] | 
        String referenceTime = referenceTime_example; // String | 
        String provider = provider_example; // String | 
        try {
            ArrayOfTerrainResult result = apiInstance.terrain(body, referenceTime, provider);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#terrain");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        array[Waypoint] body = ; // array[Waypoint] | 
        String referenceTime = referenceTime_example; // String | 
        String provider = provider_example; // String | 
        try {
            ArrayOfTerrainResult result = apiInstance.terrain(body, referenceTime, provider);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#terrain");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure API key authorization: (authentication scheme: api_key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"x-api-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"x-api-key"];
array[Waypoint] *body = ; // 
String *referenceTime = referenceTime_example; // 
String *provider = provider_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance terrainWith:body
    referenceTime:referenceTime
    provider:provider
              completionHandler: ^(ArrayOfTerrainResult output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiName = require('api_name');
var defaultClient = ApiName.ApiClient.instance;

// Configure API key authorization: api_key
var api_key = defaultClient.authentications['api_key'];
api_key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.apiKeyPrefix['x-api-key'] = "Token"

var api = new ApiName.DefaultApi()
var body = ; // {{array[Waypoint]}} 
var referenceTime = referenceTime_example; // {{String}} 
var opts = { 
  'provider': provider_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.terrain(bodyreferenceTime, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class terrainExample
    {
        public void main()
        {

            // Configure API key authorization: api_key
            Configuration.Default.ApiKey.Add("x-api-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("x-api-key", "Bearer");

            var apiInstance = new DefaultApi();
            var body = new array[Waypoint](); // array[Waypoint] | 
            var referenceTime = referenceTime_example;  // String | 
            var provider = provider_example;  // String |  (optional) 

            try
            {
                ArrayOfTerrainResult result = apiInstance.terrain(body, referenceTime, provider);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.terrain: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: api_key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('x-api-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('x-api-key', 'Bearer');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // array[Waypoint] | 
$referenceTime = referenceTime_example; // String | 
$provider = provider_example; // String | 

try {
    $result = $api_instance->terrain($body, $referenceTime, $provider);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->terrain: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

# Configure API key authorization: api_key
$WWW::SwaggerClient::Configuration::api_key->{'x-api-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'x-api-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = [WWW::SwaggerClient::Object::array[Waypoint]->new()]; # array[Waypoint] | 
my $referenceTime = referenceTime_example; # String | 
my $provider = provider_example; # String | 

eval { 
    my $result = $api_instance->terrain(body => $body, referenceTime => $referenceTime, provider => $provider);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->terrain: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: api_key
swagger_client.configuration.api_key['x-api-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['x-api-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.DefaultApi()
body =  # array[Waypoint] | 
referenceTime = referenceTime_example # String | 
provider = provider_example # String |  (optional)

try: 
    api_response = api_instance.terrain(body, referenceTime, provider=provider)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->terrain: %s\n" % e)

Parameters

Body parameters
Name Description
body *
Query parameters
Name Description
provider
String
referenceTime*
String
Required

Responses

Status: 200 - 200 response


turbulence


/turbulence

Usage and SDK Samples

curl -X POST -H "x-api-key: [[apiKey]]" "%API_URL%/turbulence?provider=&referenceTime="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure API key authorization: api_key
        ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
        api_key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //api_key.setApiKeyPrefix("Token");

        DefaultApi apiInstance = new DefaultApi();
        array[Waypoint] body = ; // array[Waypoint] | 
        String referenceTime = referenceTime_example; // String | 
        String provider = provider_example; // String | 
        try {
            ArrayOfTurbulenceResult result = apiInstance.turbulence(body, referenceTime, provider);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#turbulence");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        array[Waypoint] body = ; // array[Waypoint] | 
        String referenceTime = referenceTime_example; // String | 
        String provider = provider_example; // String | 
        try {
            ArrayOfTurbulenceResult result = apiInstance.turbulence(body, referenceTime, provider);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#turbulence");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure API key authorization: (authentication scheme: api_key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"x-api-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"x-api-key"];
array[Waypoint] *body = ; // 
String *referenceTime = referenceTime_example; // 
String *provider = provider_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance turbulenceWith:body
    referenceTime:referenceTime
    provider:provider
              completionHandler: ^(ArrayOfTurbulenceResult output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiName = require('api_name');
var defaultClient = ApiName.ApiClient.instance;

// Configure API key authorization: api_key
var api_key = defaultClient.authentications['api_key'];
api_key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.apiKeyPrefix['x-api-key'] = "Token"

var api = new ApiName.DefaultApi()
var body = ; // {{array[Waypoint]}} 
var referenceTime = referenceTime_example; // {{String}} 
var opts = { 
  'provider': provider_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.turbulence(bodyreferenceTime, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class turbulenceExample
    {
        public void main()
        {

            // Configure API key authorization: api_key
            Configuration.Default.ApiKey.Add("x-api-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("x-api-key", "Bearer");

            var apiInstance = new DefaultApi();
            var body = new array[Waypoint](); // array[Waypoint] | 
            var referenceTime = referenceTime_example;  // String | 
            var provider = provider_example;  // String |  (optional) 

            try
            {
                ArrayOfTurbulenceResult result = apiInstance.turbulence(body, referenceTime, provider);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.turbulence: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: api_key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('x-api-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('x-api-key', 'Bearer');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // array[Waypoint] | 
$referenceTime = referenceTime_example; // String | 
$provider = provider_example; // String | 

try {
    $result = $api_instance->turbulence($body, $referenceTime, $provider);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->turbulence: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

# Configure API key authorization: api_key
$WWW::SwaggerClient::Configuration::api_key->{'x-api-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'x-api-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = [WWW::SwaggerClient::Object::array[Waypoint]->new()]; # array[Waypoint] | 
my $referenceTime = referenceTime_example; # String | 
my $provider = provider_example; # String | 

eval { 
    my $result = $api_instance->turbulence(body => $body, referenceTime => $referenceTime, provider => $provider);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->turbulence: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: api_key
swagger_client.configuration.api_key['x-api-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['x-api-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.DefaultApi()
body =  # array[Waypoint] | 
referenceTime = referenceTime_example # String | 
provider = provider_example # String |  (optional)

try: 
    api_response = api_instance.turbulence(body, referenceTime, provider=provider)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->turbulence: %s\n" % e)

Parameters

Body parameters
Name Description
body *
Query parameters
Name Description
provider
String
referenceTime*
String
Required

Responses

Status: 200 - 200 response


uad


/uad

Usage and SDK Samples

curl -X POST -H "x-api-key: [[apiKey]]" "%API_URL%/uad?provider=&referenceTime="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure API key authorization: api_key
        ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
        api_key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //api_key.setApiKeyPrefix("Token");

        DefaultApi apiInstance = new DefaultApi();
        array[Waypoint] body = ; // array[Waypoint] | 
        String referenceTime = referenceTime_example; // String | 
        String provider = provider_example; // String | 
        try {
            ArrayOfWaypointResult result = apiInstance.uad(body, referenceTime, provider);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#uad");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        array[Waypoint] body = ; // array[Waypoint] | 
        String referenceTime = referenceTime_example; // String | 
        String provider = provider_example; // String | 
        try {
            ArrayOfWaypointResult result = apiInstance.uad(body, referenceTime, provider);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#uad");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure API key authorization: (authentication scheme: api_key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"x-api-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"x-api-key"];
array[Waypoint] *body = ; // 
String *referenceTime = referenceTime_example; // 
String *provider = provider_example; //  (optional)

DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance uadWith:body
    referenceTime:referenceTime
    provider:provider
              completionHandler: ^(ArrayOfWaypointResult output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ApiName = require('api_name');
var defaultClient = ApiName.ApiClient.instance;

// Configure API key authorization: api_key
var api_key = defaultClient.authentications['api_key'];
api_key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.apiKeyPrefix['x-api-key'] = "Token"

var api = new ApiName.DefaultApi()
var body = ; // {{array[Waypoint]}} 
var referenceTime = referenceTime_example; // {{String}} 
var opts = { 
  'provider': provider_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.uad(bodyreferenceTime, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class uadExample
    {
        public void main()
        {

            // Configure API key authorization: api_key
            Configuration.Default.ApiKey.Add("x-api-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("x-api-key", "Bearer");

            var apiInstance = new DefaultApi();
            var body = new array[Waypoint](); // array[Waypoint] | 
            var referenceTime = referenceTime_example;  // String | 
            var provider = provider_example;  // String |  (optional) 

            try
            {
                ArrayOfWaypointResult result = apiInstance.uad(body, referenceTime, provider);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.uad: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: api_key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('x-api-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('x-api-key', 'Bearer');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // array[Waypoint] | 
$referenceTime = referenceTime_example; // String | 
$provider = provider_example; // String | 

try {
    $result = $api_instance->uad($body, $referenceTime, $provider);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->uad: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

# Configure API key authorization: api_key
$WWW::SwaggerClient::Configuration::api_key->{'x-api-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'x-api-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = [WWW::SwaggerClient::Object::array[Waypoint]->new()]; # array[Waypoint] | 
my $referenceTime = referenceTime_example; # String | 
my $provider = provider_example; # String | 

eval { 
    my $result = $api_instance->uad(body => $body, referenceTime => $referenceTime, provider => $provider);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->uad: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: api_key
swagger_client.configuration.api_key['x-api-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['x-api-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.DefaultApi()
body =  # array[Waypoint] | 
referenceTime = referenceTime_example # String | 
provider = provider_example # String |  (optional)

try: 
    api_response = api_instance.uad(body, referenceTime, provider=provider)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->uad: %s\n" % e)

Parameters

Body parameters
Name Description
body *
Query parameters
Name Description
provider
String
referenceTime*
String
Required

Responses

Status: 200 - 200 response