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

com.frightanic.smn.api.geojson.Crs Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
package com.frightanic.smn.api.geojson;

import lombok.Getter;

import java.util.HashMap;
import java.util.Map;

/**
 * Coordinate reference system (CRS) of a GeoJSON object
 */
@Getter
public final class Crs {
  private final String type = "name";
  private final Map properties = new HashMap<>(1);

  public Crs(CrsType crs) {
    properties.put("name", crs.getUrn());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy