working on event extraction from rosenkeller

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2024-12-20 19:42:23 +01:00
parent ed8cef3738
commit d7967b2d95
4 changed files with 129 additions and 95 deletions
@@ -2,18 +2,9 @@
package de.srsoftware.cal.api;
/**
* cartesian coordinates
* cartesian coords
* @param longitude the longitude
* @param latitude the latitude
*/
public interface Coords {
/**
* the longitude
* @return the longitude
*/
double longitude();
/**
* the latitude
* @return the latitude
*/
double latitude();
public record Coords(double longitude, double latitude) {
}