Skip to content
Snippets Groups Projects
Commit 944fe14b authored by Christopher Schankula's avatar Christopher Schankula :earth_africa:
Browse files

a few edits to RecordCluster javadoc

parent 3ba1631a
No related branches found
No related tags found
No related merge requests found
......@@ -4,10 +4,24 @@ import java.util.ArrayList;
import data.Record;
/**
* A cluster of records clustered by the Cluster class.
* @author TrawlStars, Inc.
*
*/
public class RecordCluster {
private ArrayList<Record> records; //list of records
private Point centroid; //Middle point of square in question
private int individualCount; //Number of data points in cluster
/**
* List of records in cluster.
*/
private ArrayList<Record> records;
/**
* Average 2D position of records in cluster.
*/
private Point centroid;
/**
* Total number of inidividual fish in the cluster.
*/
private int individualCount;
/**
* Constructor for a cluster of fish data points
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment