source: ether_statistics/service/implementation/com/ether/BouchonHelper.java @ 572

Last change on this file since 572 was 572, checked in by vmipsl, 12 years ago

clean

File size: 838 bytes
Line 
1package com.ether;
2
3import java.util.Arrays;
4import java.util.List;
5
6/**
7 * @author vmipsl
8 * @date sept. 2011
9 */
10public class BouchonHelper
11{
12    public static Data createRealValuesFor2D()
13    {
14        final Double[] latitudeArray = new Double[]{48.898, 48.899, 48.900, 49.1001, 49.1002, 49.1003, 49.1004};
15        final Double[] longitudeArray = new Double[]{-0.1832, 2.0368, 2.0369, 2.037, 2.8216, 2.8221, 3.0};
16        final Double[] parameterArray = new Double[]{0.1094, 30.8, 19.0, 12.31, 12.69, 12.06, 6.813};
17
18        final List<Double> latitudeValues = Arrays.asList( latitudeArray );
19        final List<Double> longitudeValues = Arrays.asList( longitudeArray );
20        final List<Double> parameterValues = Arrays.asList( parameterArray );
21
22        return new Data( parameterValues, latitudeValues, longitudeValues );
23    }
24}
Note: See TracBrowser for help on using the repository browser.