Package de.capacis.jzeemap

Examples of de.capacis.jzeemap.DrawAttributes$TextAttributes


    final ExecutorService executor = Executors.newFixedThreadPool(threadCount);
    final SceneConfiguration sceneConfig = getScene().getConfiguration();
    sceneConfig.updateFromImageConfiguration(getOutputConfiguration().getClipping());

    final DrawAttributes drawAttributes = new DrawAttributes();
    drawAttributes.setPointAttributes(getOutputConfiguration().getPoint());
    drawAttributes.setTimestampAttributes(getOutputConfiguration().getTimestamp());
    drawAttributes.setDaycounterAttributes(getOutputConfiguration().getDaycounter());
    final PrintWriter fileListWriter = new PrintWriter(new BufferedOutputStream(new FileOutputStream(new File(getOutputConfiguration().getDir(), getOutputConfiguration().getImage().getPrefix() + ".list"))));
    final long timeslice = (sceneConfig.getMaxTimestamp().getTime() - sceneConfig.getMinTimestamp().getTime() + 1) / imageCount;
    logger.info("will create " + imageCount + " images, each having a scene duration of " + DurationFormatUtils.formatDurationHMS(timeslice));

    final AtomicInteger drawnObjects = new AtomicInteger(0);
View Full Code Here

TOP

Related Classes of de.capacis.jzeemap.DrawAttributes$TextAttributes

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.