US Government Web Services and XML Data Sources
Load and stress tested with SiteBlaster
USGovXML Icon
Home     Index     About     Contact     Examples     Help      Mobile Apps 
US Government Data Sources

HGDW Web Service

Department: Department of Health and Human Services (HHS)
Agency: Health Resources and Services Administration (HRSA) (http://www.hrsa.gov/index.html )
Sub Agency: HRSA Geospatial Data Warehouse (HGDW) (http://datawarehouse.hrsa.gov/ )
Description:
The HGDW Data Service (https://datawarehouse.hrsa.gov/data/webservices.aspx ) provides the ability to query the HGDW data warehouse for health centers in and around a specific geographic area and to query for HIV/AIDS care providers around a latitude and longitude..

Federally-funded health centers provide care even if the person receiving the care has no health insurance. Clients pay what they can afford, based on their income. HRSA makes grants to organizations to improve and expand health care services for underserved people.

Registration is free and required.
Help/Documentation:
https://datawarehouse.hrsa.gov/data/dataServices/developerGuide.aspx
WSDL/Data Location:
https://datawarehouse.hrsa.gov/HDWDataServiceExternal/HdwDataWebServiceExternal.asmx?WSDL
Operations:
OperationDescription
FindHealthCentersAroundALocationFind health centers around a location
FindHIVAIDSCareProvidersAroundALocationFind HIV/AIDS providers around a location

Support: http://www.hrsa.gov/about/contact/index.html
Example: HGDW

.
.
.
            var svc = new gov.hrsa.datawarehouse.HGDWDataService();

            // select the health centers within 25 miles of
            // coordinates -122.437471433112/37.8029842091763

            XmlNode result = svc.FindHealthCentersAroundALocation(-122.437471433112, 37.8029842091763, 25);
            XmlNodeList xmlSites = result.SelectNodes("//SITE_NM");

            // display the names of the selected health centers
            foreach (XmlNode node in xmlSites)
            {
                Console.WriteLine (node.InnerText);
            }

            svc.Dispose();
            svc = null;
            Console.WriteLine ("Press any key to exit ...");
            Console.Read();
.
.
.






 
Terms of Use     Contact     Mobile    

Copyright © 2008-2016 USGovXML.com All rights reserved.