All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.conveyal.gtfs.util.json.Rectangle2DDeserializer Maven / Gradle / Ivy

Go to download

A library to load and index GTFS feeds of arbitrary size using disk-backed storage

There is a newer version: 6.2.0
Show newest version
package com.conveyal.gtfs.util.json;

import com.fasterxml.jackson.core.JsonParseException;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonDeserializer;

import java.awt.geom.Rectangle2D;
import java.io.IOException;

public class Rectangle2DDeserializer extends JsonDeserializer {

    @Override
    public Rectangle2D deserialize(JsonParser jp, DeserializationContext arg1) throws IOException {

        IntermediateBoundingBox bbox = jp.readValueAs(IntermediateBoundingBox.class);

        if (bbox.north == null || bbox.south == null || bbox.east == null || bbox.west == null)
            throw new JsonParseException("Unable to deserialize bounding box; need north, south, east, and west.", jp.getCurrentLocation());

        Rectangle2D.Double ret = new Rectangle2D.Double(bbox.west, bbox.north, 0, 0);
        ret.add(bbox.east, bbox.south);
        return ret;
    }

    /**
     * A place to hold information from the JSON stream temporarily.
     */
    private static class IntermediateBoundingBox {
        public Double north;
        public Double south;
        public Double east;
        public Double west;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy