/* * 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.Array; import ucar.ma2.DataType; import ucar.ma2.StructureMembers.Member; import ucar.nc2.Attribute; import ucar.nc2.Variable; import ucar.unidata.geoloc.LatLonPointImpl; import ucar.unidata.geoloc.LatLonRect; import ucar.unidata.geoloc.Station; import java.util.Iterator; import java.util.List; /** * @author mhermida * */ public final class CFPointWriterUtils { private CFPointWriterUtils(){} public static Array getArrayFromMember(Variable var, Member m){ //DataType m_dt = writer.findVariable(m.getName()).getDataType(); DataType v_dt = var.getDataType(); //DataType m_dt = m.getDataType(); //Writes one single data //int[] shape = writer.findVariable(m.getName()).getShape(); int[] shape = var.getShape(); //Set the shape we really want for(int i=0; i< shape.length; i++ ){ shape[i] = 1; } Array arr = Array.factory(v_dt, shape ); setDataArray( v_dt, arr, m ); return arr; } private static void setDataArray(DataType dt, Array arr, Member m){ //Set the value (int, short, float, double...) if( dt == DataType.SHORT){ arr.setShort(0, m.getDataArray().getShort(0) ); } if( dt == DataType.INT ){ arr.setInt(0, m.getDataArray().getInt(0) ); } if( dt == DataType.DOUBLE){ arr.setDouble(0, m.getDataArray().getDouble(0) ); } if( dt == DataType.FLOAT){ arr.setFloat(0, m.getDataArray().getFloat(0) ); } } public static LatLonRect getBoundingBox(List<? extends Station> stnList) { Station s = stnList.get(0); LatLonPointImpl llpt = new LatLonPointImpl(); llpt.set(s.getLatitude(), s.getLongitude()); LatLonRect rect = new LatLonRect(llpt, 0, 0); for (int i = 1; i < stnList.size(); i++) { s = stnList.get(i); llpt.set(s.getLatitude(), s.getLongitude()); rect.extend(llpt); } // To give a little "wiggle room", we're going to slightly expand the bounding box. double newLowerLeftLat = rect.getLowerLeftPoint().getLatitude() - .0005; double newLowerLeftLon = rect.getLowerLeftPoint().getLongitude() - .0005; LatLonPointImpl newLowerLeftPoint = new LatLonPointImpl(newLowerLeftLat, newLowerLeftLon); double newUpperRightLat = rect.getUpperRightPoint().getLatitude() + .0005; double newUpperRightLon = rect.getUpperRightPoint().getLongitude() + .0005; LatLonPointImpl newUpperRightPoint = new LatLonPointImpl(newUpperRightLat, newUpperRightLon); rect.extend(newLowerLeftPoint); rect.extend(newUpperRightPoint); return rect; } public static Attribute findCDMAtt(List<Attribute> atts, String attName){ Iterator<Attribute> it = atts.iterator(); Attribute target = null; while( it.hasNext() && target == null ){ Attribute att = it.next(); if( att.getFullName().equals(attName) || att.getShortName().equals(attName)){ target = att; } } return target; } }