NED


Click here for a complete list of operations.

ObjNearPosn

This method finds all objects in NED near a given position.<br><b>Input 1:</b> RA in degree (double)<br><b>Input 2:</b> Dec in degree (double)<br><b>Input 3:</b> Radius in degree (double)<br><b>Output:</b> All the relevant information (ObjInfo array)

Test

The test form is only available for requests from the local machine.

SOAP

The following is a sample SOAP request and response. The placeholders shown need to be replaced with actual values.

POST /NED/ws_v1_0/NED.asmx HTTP/1.1
Host: voservices.net
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://skyservice.pha.jhu.edu/ObjNearPosn"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <ObjNearPosn xmlns="http://skyservice.pha.jhu.edu">
      <ra>double</ra>
      <dec>double</dec>
      <radius>double</radius>
    </ObjNearPosn>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <ObjNearPosnResponse xmlns="http://skyservice.pha.jhu.edu">
      <ObjNearPosnResult>
        <ObjInfo>
          <ArrayOfCrossID>
            <CrossID xsi:nil="true" />
            <CrossID xsi:nil="true" />
          </ArrayOfCrossID>
          <dist>double</dist>
          <no_ref>int</no_ref>
          <no_note>int</no_note>
          <no_photom>int</no_photom>
          <objtype>string</objtype>
          <ra>double</ra>
          <dec>double</dec>
          <unc_maj>double</unc_maj>
          <unc_min>double</unc_min>
          <unc_ang>double</unc_ang>
          <refcode>string</refcode>
          <ArrayOfMoreData>
            <MoreData xsi:nil="true" />
            <MoreData xsi:nil="true" />
          </ArrayOfMoreData>
        </ObjInfo>
        <ObjInfo>
          <ArrayOfCrossID>
            <CrossID xsi:nil="true" />
            <CrossID xsi:nil="true" />
          </ArrayOfCrossID>
          <dist>double</dist>
          <no_ref>int</no_ref>
          <no_note>int</no_note>
          <no_photom>int</no_photom>
          <objtype>string</objtype>
          <ra>double</ra>
          <dec>double</dec>
          <unc_maj>double</unc_maj>
          <unc_min>double</unc_min>
          <unc_ang>double</unc_ang>
          <refcode>string</refcode>
          <ArrayOfMoreData>
            <MoreData xsi:nil="true" />
            <MoreData xsi:nil="true" />
          </ArrayOfMoreData>
        </ObjInfo>
      </ObjNearPosnResult>
    </ObjNearPosnResponse>
  </soap:Body>
</soap:Envelope>