Coordinates.java
package org.opentrafficsim.core.network.factory.xml.units;
import org.opentrafficsim.core.geometry.OtsPoint3d;
/**
* <p>
* Copyright (c) 2013-2023 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
* BSD-style license. See <a href="https://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>.
* </p>
* @author <a href="https://github.com/averbraeck">Alexander Verbraeck</a>
*/
public final class Coordinates
{
/** Utility class. */
private Coordinates()
{
// do not instantiate
}
/**
* Parse a group of coordinates with (x,y) or (x,y,z).
* @param cs String; the string containing the coordinates
* @return OtsPoint3d[] containing the x,y or x,y,z values.
*/
public static OtsPoint3d[] parseCoordinates(final String cs)
{
String cs1 = cs.replaceAll("\\s+", "");
String c = cs1.replace(")(", ")split(");
String[] cc = c.split("split");
OtsPoint3d[] coords = new OtsPoint3d[cc.length];
int i = 0;
for (String coord : cc)
{
coords[i] = parseCoordinate(coord);
i++;
}
return coords;
}
/**
* Parse a coordinate with (x,y) or (x,y,z).
* @param cs String; the string containing the coordinate
* @return OtsPoint3d containing the x,y or x,y,z values
*/
public static OtsPoint3d parseCoordinate(final String cs)
{
String c = cs.replace("(", "");
c = c.replace(")", "");
String[] cc = c.split(",");
double x = Double.parseDouble(cc[0]);
double y = Double.parseDouble(cc[1]);
double z = cc.length > 2 ? Double.parseDouble(cc[2]) : 0.0;
return new OtsPoint3d(x, y, z);
}
}