PHP Classes

File: doc/example/neo.php

Recommend this page to a friend!
  Classes of Sergii Pryz   NASA Near Earth Orbit API Client   doc/example/neo.php   Download  
File: doc/example/neo.php
Role: Example script
Content type: text/plain
Description: Example script
Class: NASA Near Earth Orbit API Client
Get near Earth orbit object data with NASA API
Author: By
Last change:
Date: 7 years ago
Size: 899 bytes
 

Contents

Class file image Download
<?php
namespace Picamator\NeoWsClient\Example;

/**
 * Resource: GET /rest/v1/neo/{asteroid_id}
 */

require_once 'app.php';
require_once
__DIR__ . '/template/neo.php';

use \
Picamator\NeoWsClient\Request\Data\NeoRequest;

/** @var \Picamator\NeoWsClient\Manager\Manager $manager */
$manager = $container->get('neo_ws_manager_neo_manager');

// get response
$request = new NeoRequest(['asteroidId' => '3729835']);
$response = $manager->find($request);

/** @var \Picamator\NeoWsClient\Model\Api\Data\NeoInterface $data */
$data = $response->getData();

echo <<<EOT
=================================
         NEO Asteroid
=================================

HTTP Code |
{$response->getCode()}
Api key limit |
{$response->getRateLimit()->getLimit()}
Api key remaining |
{$response->getRateLimit()->getRemaining()}


EOT;

showNeoDetailed($data);