ucar.nc2.ft.point.writer.WriterCFStationCollection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdm Show documentation
Show all versions of cdm Show documentation
The NetCDF-Java Library is a Java interface to NetCDF files,
as well as to many other types of scientific data formats.
The newest version!
/*
* Copyright (c) 1998 - 2014. University Corporation for Atmospheric Research/Unidata
* Portions of this software were developed by the Unidata Program at the
* University Corporation for Atmospheric Research.
*
* Access and use of this software shall impose the following obligations
* and understandings on the user. The user is granted the right, without
* any fee or cost, to use, copy, modify, alter, enhance and distribute
* this software, and any derivative works thereof, and its supporting
* documentation for any purpose whatsoever, provided that this entire
* notice appears in all copies of the software, derivative works and
* supporting documentation. Further, UCAR requests that the user credit
* UCAR/Unidata in any publications that result from the use of this
* software or in any product that includes this software. The names UCAR
* and/or Unidata, however, may not be used in any advertising or publicity
* to endorse or promote any products or commercial entity unless specific
* written permission is obtained from UCAR/Unidata. The user also
* understands that UCAR/Unidata is not obligated to provide the user with
* any support, consulting, training or assistance of any kind with regard
* to the use, operation and performance of this software nor to provide
* the user with any updates, revisions, new versions or "bug fixes."
*
* THIS SOFTWARE IS PROVIDED BY UCAR/UNIDATA "AS IS" AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL UCAR/UNIDATA BE LIABLE FOR ANY SPECIAL,
* INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
* FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
* NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
* WITH THE ACCESS, USE OR PERFORMANCE OF THIS SOFTWARE.
*/
package ucar.nc2.ft.point.writer;
import ucar.ma2.*;
import ucar.nc2.*;
import ucar.nc2.constants.CDM;
import ucar.nc2.constants.CF;
import ucar.nc2.dataset.conv.CF1Convention;
import ucar.nc2.ft.PointFeature;
import ucar.nc2.ft.point.StationFeature;
import ucar.nc2.ft.point.StationPointFeature;
import ucar.nc2.time.CalendarDate;
import ucar.nc2.units.DateUnit;
import ucar.unidata.geoloc.Station;
import java.io.IOException;
import java.util.*;
/**
* Write a CF "Discrete Sample" station file.
* Example H.7. Timeseries of station data in the indexed ragged array representation.
*
*
*
* writeHeader()
* iterate { writeRecord() }
* finish()
*
*
* @see "http://cf-pcmdi.llnl.gov/documents/cf-conventions/1.6/cf-conventions.html#idp8340320"
* @author caron
* @since Aug 19, 2009
*/
public class WriterCFStationCollection extends CFPointWriter {
//////////////////////////////////////////////////////////
private List stnList;
protected Structure stationStruct; // used for netcdf4 extended
private HashMap stationIndexMap;
private boolean useDesc = false;
private boolean useAlt = false;
private boolean useWmoId = false;
private int desc_strlen = 1, wmo_strlen = 1;
private Map featureVarMap = new HashMap<>();
public WriterCFStationCollection(String fileOut, List atts, List dataVars, List extra,
DateUnit timeUnit, String altUnits, CFPointWriterConfig config) throws IOException {
super(fileOut, atts, dataVars, extra, timeUnit, altUnits, config);
writer.addGroupAttribute(null, new Attribute(CF.FEATURE_TYPE, CF.FeatureType.timeSeries.name()));
}
public void writeHeader(List stns, StationPointFeature spf) throws IOException {
this.stnList = stns;
// see if there's altitude, wmoId for any stations
for (Station stn : stnList) {
if (!Double.isNaN(stn.getAltitude()))
useAlt = true;
if ((stn.getWmoId() != null) && (stn.getWmoId().trim().length() > 0))
useWmoId = true;
if ((stn.getDescription() != null) && (stn.getDescription().trim().length() > 0))
useDesc = true;
// find string lengths
id_strlen = Math.max(id_strlen, stn.getName().length());
if (stn.getDescription() != null) desc_strlen = Math.max(desc_strlen, stn.getDescription().length());
if (stn.getWmoId() != null) wmo_strlen = Math.max(wmo_strlen, stn.getWmoId().length());
}
llbb = CFPointWriterUtils.getBoundingBox(stnList); // gets written in super.finish();
StationFeature sf = spf.getStation();
StructureData stnData = sf.getFeatureData();
StructureData obsData = spf.getFeatureData();
List coords = new ArrayList<>();
coords.add(VariableSimpleImpl.makeScalar(timeName, "time of measurement", timeUnit.getUnitsString(), DataType.DOUBLE));
coords.add(VariableSimpleImpl.makeScalar(stationIndexName, "station index for this observation record", null, DataType.INT)
.add(new Attribute(CF.INSTANCE_DIMENSION, stationDimName)));
Formatter coordNames = new Formatter().format("%s %s %s", timeName, latName, lonName);
if (useAlt) coordNames.format(" %s", stationAltName);
super.writeHeader(coords, stnData, obsData, coordNames.toString());
int count = 0;
stationIndexMap = new HashMap<>(2 * stns.size());
for (StationFeature stn : stnList) {
writeStationData(stn);
stationIndexMap.put(stn.getName(), count);
count++;
}
}
protected void makeFeatureVariables(StructureData featureData, boolean isExtended) throws IOException {
// add the dimensions : extendded model can use an unlimited dimension
//Dimension stationDim = isExtended ? writer.addDimension(null, stationDimName, 0, true, true, false) : writer.addDimension(null, stationDimName, nstns);
Dimension stationDim = writer.addDimension(null, stationDimName, stnList.size());
List stnVars = new ArrayList<>();
stnVars.add(VariableSimpleImpl.makeScalar(latName, "station latitude", CDM.LAT_UNITS, DataType.DOUBLE));
stnVars.add(VariableSimpleImpl.makeScalar(lonName, "station longitude", CDM.LON_UNITS, DataType.DOUBLE));
if (useAlt) {
stnVars.add(VariableSimpleImpl.makeScalar(stationAltName, "station altitude", altUnits, DataType.DOUBLE)
.add(new Attribute(CF.STANDARD_NAME, CF.SURFACE_ALTITUDE))
.add(new Attribute(CF.POSITIVE, CF1Convention.getZisPositive(altName, altUnits))));
}
stnVars.add(VariableSimpleImpl.makeString(stationIdName, "station identifier", null, id_strlen)
.add(new Attribute(CF.CF_ROLE, CF.TIMESERIES_ID))); // station_id:cf_role = "timeseries_id";
if (useDesc) stnVars.add(VariableSimpleImpl.makeString(descName, "station description", null, desc_strlen)
.add(new Attribute(CF.STANDARD_NAME, CF.PLATFORM_NAME)));
if (useWmoId) stnVars.add(VariableSimpleImpl.makeString(wmoName, "station WMO id", null, wmo_strlen)
.add(new Attribute(CF.STANDARD_NAME, CF.PLATFORM_ID)));
for (StructureMembers.Member m : featureData.getMembers()) {
if (getDataVar(m.getName()) != null)
stnVars.add(new VariableSimpleAdapter(m));
}
if (isExtended) {
stationStruct = (Structure) writer.addVariable(null, stationStructName, DataType.STRUCTURE, stationDimName);
addCoordinatesExtended(stationStruct, stnVars);
} else {
addCoordinatesClassic(stationDim, stnVars, featureVarMap);
}
}
private int stnRecno = 0;
private void writeStationData(StationFeature stn) throws IOException {
StructureDataScalar stnCoords = new StructureDataScalar("Coords");
stnCoords.addMember(latName, null, null, DataType.DOUBLE, false, stn.getLatLon().getLatitude());
stnCoords.addMember(lonName, null, null, DataType.DOUBLE, false, stn.getLatLon().getLongitude());
stnCoords.addMember(stationAltName, null, null, DataType.DOUBLE, false, stn.getAltitude());
stnCoords.addMemberString(stationIdName, null, null, stn.getName().trim(), id_strlen);
if (useDesc) stnCoords.addMemberString(descName, null, null, stn.getDescription().trim(), desc_strlen);
if (useWmoId) stnCoords.addMemberString(wmoName, null, null, stn.getWmoId().trim(), wmo_strlen);
StructureDataComposite sdall = new StructureDataComposite();
sdall.add(stnCoords); // coords first so it takes precedence
sdall.add(stn.getFeatureData());
stnRecno = super.writeStructureData(stnRecno, stationStruct, sdall, featureVarMap);
}
public void writeRecord(Station s, PointFeature sobs, StructureData sdata) throws IOException {
writeRecord(s.getName(), sobs.getObservationTime(), sobs.getObservationTimeAsCalendarDate(), sdata);
}
private int obsRecno = 0;
public void writeRecord(String stnName, double timeCoordValue, CalendarDate obsDate, StructureData sdata) throws IOException {
trackBB(null, obsDate);
Integer parentIndex = stationIndexMap.get(stnName);
if (parentIndex == null)
throw new RuntimeException("Cant find station " + stnName);
StructureDataScalar coords = new StructureDataScalar("Coords");
coords.addMember(timeName, null, null, DataType.DOUBLE, false, timeCoordValue);
coords.addMember(stationIndexName, null, null, DataType.INT, false, parentIndex);
StructureDataComposite sdall = new StructureDataComposite();
sdall.add(coords); // coords first so it takes precedence
sdall.add(sdata);
obsRecno = super.writeStructureData(obsRecno, record, sdall, dataMap);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy