// $Id: $ /* * Copyright 1998-2009 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.dt; import ucar.ma2.StructureData; import ucar.ma2.Array; import ucar.ma2.StructureMembers; import ucar.nc2.constants.FeatureType; import java.io.*; import java.util.Iterator; import java.util.ArrayList; public class TimeStationObs { static private boolean debug = false; private static long timeToScan = 0; public static void scanStation(String url, String station, Predicate p, Action a, Limit limit) throws IOException { if (debug) System.out.println("scanStation open "+url); try (StationObsDataset sod = (StationObsDataset) TypedDatasetFactory.open(FeatureType.STATION, url, null, new StringBuilder());) { ucar.unidata.geoloc.Station s = sod.getStation(station); if (s == null) return; DataIterator iter = sod.getDataIterator(s); while (iter.hasNext()) { StationObsDatatype dtype = (StationObsDatatype) iter.nextData(); StructureData sdata = dtype.getData(); if (p.match(sdata)) { a.act(sdata); limit.matches++; } limit.count++; if (limit.count > limit.limit) break; } } } public static void scanAll(String url, Predicate p, Action a, Limit limit) throws IOException { if (debug) System.out.println("scanAll open "+url); try (PointObsDataset dataset = (PointObsDataset) TypedDatasetFactory.open(FeatureType.POINT, url, null, new StringBuilder())) { DataIterator iter = dataset.getDataIterator(0); while(iter.hasNext()) { PointObsDatatype pobs = (PointObsDatatype) iter.nextData(); StructureData sdata = pobs.getData(); if(p.match(sdata)) { a.act(sdata); limit.matches++; } limit.count++; if(limit.count > limit.limit) break; } } } private interface Predicate { boolean match(StructureData sdata); } private interface Action { void act(StructureData sdata) throws IOException; } private class Limit { int count; int limit = Integer.MAX_VALUE; int matches; } public void timeNetcdf() throws IOException { Limit limit = new Limit(); Predicate p = new Predicate() { public boolean match(StructureData sdata) { return (sdata.getScalarFloat("wind_peak_speed") > 10); } }; Action act = new Action() { public void act(StructureData sdata) { } }; long start = System.currentTimeMillis(); for (int i = 0; i < fileList.size(); i++) { String s = (String) fileList.get(i); scanAll(s, p, act, limit); } long took = System.currentTimeMillis() - start; double mps = 1000 * limit.count / took; System.out.println("\nscanAllNetcdf successfully read " + limit.count + " records; found " + limit.matches + " matches"); System.out.println("that took = " + took + " msecs; messages/sec = " + mps); timeToScan = took; } public void timeNetcdfStation() throws IOException { Limit limit = new Limit(); Predicate p = new Predicate() { public boolean match(StructureData sdata) { return true; } }; Action act = new Action() { public void act(StructureData sdata) { } }; long start = System.currentTimeMillis(); for (int i = 0; i < fileList.size(); i++) { String s = (String) fileList.get(i); scanStation(s, "ACK", p, act, limit); } long took = System.currentTimeMillis() - start; double mps = 1000 * limit.count / took; System.out.println("\ntimeNetcdfStation successfully read " + limit.count + " records; found " + limit.matches + " matches"); System.out.println("that took = " + took + " msecs; obs/sec= "+mps); } private static DataOutputStream xout; public void writeXML() throws IOException { xout = new DataOutputStream(new BufferedOutputStream(new FileOutputStream("C:/temp/temp2.xml"), 10000)); xout.writeBytes("<?xml version='1.0' encoding='UTF-8'?>\n"); xout.writeBytes("<metarCollection dataset='name'>\n"); Limit limit = new Limit(); Predicate p = new Predicate() { public boolean match(StructureData sdata) { return (sdata.getScalarFloat("wind_peak_speed") > 10); } }; Action act = new Action() { public void act(StructureData sdata) throws IOException { xout.writeBytes(" <metar>\n"); for (Iterator iter = sdata.getMembers().iterator(); iter.hasNext();) { StructureMembers.Member m = (StructureMembers.Member) iter.next(); xout.writeBytes(" <data name='" + m.getName() + "'>"); Array sdataArray = sdata.getArray(m); // System.out.println(m.getName()+" "+m.getDataType()+" "+sdataArray.toString()); xout.writeBytes(sdataArray.toString() + "</data>\n"); } xout.writeBytes(" </metar>\n"); } }; long start = System.currentTimeMillis(); for (int i = 0; i < fileList.size(); i++) { String s = (String) fileList.get(i); scanAll(s, p, act, limit); } xout.writeBytes("</metarCollection>\n"); xout.close(); long took = System.currentTimeMillis() - start; System.out.println("\nscanAllNetcdf read " + limit.count + " records; match and write " + limit.matches + " XML records"); System.out.println("that took = " + took + " msecs"); long writeTime = took - timeToScan; double mps = 1000 * limit.matches / writeTime; System.out.println(" writeTime = " + writeTime + " msecs; write messages/sec = " + mps); } private BufferedOutputStream fout; public void writeRaw() throws IOException { fout = new BufferedOutputStream(new FileOutputStream("C:/temp/raw.txt"), 10000); Limit limit = new Limit(); Predicate p = new Predicate() { public boolean match(StructureData sdata) { return (sdata.getScalarFloat("wind_peak_speed") > 10); } }; Action act = new Action() { public void act(StructureData sdata) throws IOException { String report = sdata.getScalarString("report"); fout.write(report.getBytes(CDM.utf8Charset)); fout.write((int) '\n'); } }; long start = System.currentTimeMillis(); for (int i = 0; i < fileList.size(); i++) { String s = (String) fileList.get(i); scanAll(s, p, act, limit); } fout.close(); long took = System.currentTimeMillis() - start; System.out.println("\nscanAllNetcdf read " + limit.count + " records; match and write " + limit.matches + " raw records"); System.out.println("that took = " + took + " msecs"); long writeTime = took - timeToScan; double mps = 1000 * limit.matches / writeTime; System.out.println(" writeTime = " + writeTime + " msecs; write messages/sec = " + mps); } /* public static void addData(StructureData sdata) { Element elem = new Element("metar"); for (Iterator iter = sdata.getMembers().iterator(); iter.hasNext();) { StructureMembers.Member m = (StructureMembers.Member) iter.next(); Element dataElem = new Element("data"); dataElem.setAttribute("name", m.getName()); elem.addContent(dataElem); Array sdataArray = sdata.getArray(m); // System.out.println(m.getName()+" "+m.getDataType()+" "+sdataArray.toString()); dataElem.addContent(sdataArray.toString()); } rootElem.addContent(elem); } */ static private ArrayList fileList = new ArrayList(); static private void getFiles(String dirName) { double size = 0.0; int count = 0; File dir = new File(dirName); File[] files = dir.listFiles(); for (int i = 0; i < files.length; i++) { File file = files[i]; String fileS = file.getAbsolutePath(); if (fileS.contains("Surface") && fileS.endsWith(".nc")) { fileList.add(fileS); size += file.length(); count++; } } System.out.println("Reading directory " + dirName + " # files = "+count+" total file sizes = " + size/1000/1000+" Mb"); } static public void main(String args[]) throws IOException { //getFiles("R:/testdata2/station/ldm/metar/"); getFiles("C:/data/metars/"); TimeStationObs t = new TimeStationObs(); t.timeNetcdf(); t.writeXML(); t.writeRaw(); t.timeNetcdfStation(); } }