| Creates a flat FeatureType wq_ir_results with a structure
like the following, from which a complex one should be constructed
grouping by station_no attribute.
Following this sample schema, a total of 10 unique station_no identifiers
will be created, and for each one, a total of N desagregate rows with the
same station_no, where N goes from 1 to 10. So for the first station_no
there will be just one occurrence and the last one will have 10.
station_no (string) |
sitename (string) |
anzlic_no (string) |
project_no (string) |
id (string) |
sample_collection_date (string) |
determinand_description (string) |
results_value (float) |
location (Point) |
station_1 |
sitename_1 |
anzlic_no_1 |
project_no_1 |
id_1_1 |
sample_collection_date_1_1 |
determinand_description_1_1 |
1.1 |
POINT(1, 1) |
station_2 |
sitename_2 |
anzlic_no_2 |
project_no_2 |
id_2_1 |
sample_collection_date_2_1 |
determinand_description_2_1 |
2.1 |
POINT(2, 2) |
station_2 |
sitename_2 |
anzlic_no_2 |
project_no_2 |
id_2_2 |
sample_collection_date_2_2 |
determinand_description_2_2 |
2.2 |
POINT(2, 2) |
... |
station_10 |
sitename_10 |
anzlic_no_10 |
project_no_10 |
id_10_10 |
sample_collection_date_10_9 |
determinand_description_10_9 |
10.10 |
POINT(10, 10) |
station_10 |
sitename_10 |
anzlic_no_10 |
project_no_10 |
id_10_10 |
sample_collection_date_10_10 |
determinand_description_10_10 |
10.10 |
POINT(10, 10) |
throws: Exception - |