degreedays-api

Used in: 0 components

Overview

Description

Java client library for the Degree Days.net API, giving quick access to heating and cooling degree days (HDD and CDD) for locations worldwide. Degree days are a specialist kind of weather data (specifically a form of historical temperature data) used for analysis of HVAC energy consumption in buildings, typically as part of an energy management program.

Snippets

<dependency>
    <groupId>net.degreedays</groupId>
    <artifactId>degreedays-api</artifactId>
    <version>1.4</version>
</dependency>

Maven POM File

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  
	<modelVersion>4.0.0</modelVersion>
	<groupId>net.degreedays</groupId>
	<artifactId>degreedays-api</artifactId>
	<version>1.4</version>
	<packaging>jar</packaging>

	<name>Degree Days API Java Client Library</name>
	<description>Java client library for the Degree Days.net API, giving quick access to heating and cooling degree days (HDD and CDD) for locations worldwide.  Degree days are a specialist kind of weather data (specifically a form of historical temperature data) used for analysis of HVAC energy consumption in buildings, typically as part of an energy management program.</description>
	<url>https://www.degreedays.net/api/java</url>
  
	<licenses>
		<license>
			<name>Apache License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
  
	<organization>
		<name>Degree Days</name>
		<url>https://www.degreedays.net/</url>
	</organization>
  
	<developers>
		<developer>
			<name>Degree Days.net Team</name>
			<email>info@degreedays.net</email>
			<organization>BizEE Software</organization>
			<organizationUrl>https://www.bizeesoftware.com/</organizationUrl>
		</developer>
	</developers>
  
	<!-- SCM - project is closed source, but it has full docs at this link. -->
	<scm>
		<url>https://www.degreedays.net/api/java</url>
	</scm>

</project>