- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.geotools.ysld.parse.ZoomContext
类的一些代码示例,展示了ZoomContext
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZoomContext
类的具体详情如下:
包路径:org.geotools.ysld.parse.ZoomContext
类名称:ZoomContext
[英]Represents a mapping between zoom level and scale.
[中]表示缩放级别和比例之间的映射。
代码示例来源:origin: geotools/geotools
private ScaleRange parseZoom(YamlMap r, YamlParseContext context) {
if (r.has("zoom")) {
ZoomContext zCtxt = getZoomContext(context);
Object value = r.get("zoom");
Tuple t = null;
try {
t = Tuple.of(2).parse(value);
} catch (IllegalArgumentException e) {
throw new IllegalArgumentException(
String.format("Bad zoom value: '%s', must be of form [<min>,<max>]", value),
e);
}
@Nullable Integer min = null;
@Nullable Integer max = null;
if (t.at(0) != null) {
if (!t.strAt(0).equalsIgnoreCase("min")) {
min = Integer.parseInt(t.strAt(0));
}
}
if (t.at(1) != null) {
if (!t.strAt(1).equalsIgnoreCase("max")) {
max = Integer.parseInt(t.strAt(1));
}
}
return zCtxt.getRange(min, max);
} else {
return null;
}
}
代码示例来源:origin: geotools/geotools
@Test
public void testWGS84Scales() throws Exception {
ZoomContext context = WellKnownZoomContextFinder.getInstance().get("DEFAULT");
for (int i = 0; i < WGS84_SCALE_DENOMS.length; i++) {
assertThat(
context.getScaleDenominator(i), mCloseTo(WGS84_SCALE_DENOMS[i], 0.00000001d));
}
}
代码示例来源:origin: geotools/geotools
@Override
protected void validateParsed(Integer parsed, ScalarEvent evt, YsldValidateContext context) {
if (!context.getZCtxt().isInRange(parsed)) {
context.error(
String.format("Zoom level %d is out of range", parsed), evt.getStartMark());
}
}
}
代码示例来源:origin: geotools/geotools
@SuppressWarnings("unchecked")
@Test
public void testCustomFinderOverridesWellKnown() throws IOException {
String yaml =
"grid:\n"
+ " name: WebMercator\n"
+ "feature-styles: \n"
+ "- name: name\n"
+ " rules:\n"
+ " - zoom: "
+ tuple(0, 0);
ZoomContextFinder finder = createMock(ZoomContextFinder.class);
ZoomContext context = createMock(ZoomContext.class);
expect(finder.get("WebMercator")).andReturn(context);
expect(context.getRange(0, 0)).andReturn(new ScaleRange(42, 64));
replay(finder, context);
StyledLayerDescriptor sld = Ysld.parse(yaml, Arrays.asList(finder), (ResourceLocator) null);
FeatureTypeStyle fs = SLD.defaultStyle(sld).featureTypeStyles().get(0);
fs.rules().get(0).getMaxScaleDenominator();
assertThat(
(Iterable<Rule>) fs.rules(),
hasItems(
allOf(
Matchers.<Rule>hasProperty(
"maxScaleDenominator", Matchers.closeTo(64, 0.0000001d)),
Matchers.<Rule>hasProperty(
"minScaleDenominator", Matchers.closeTo(42, 0.0000001d)))));
verify(finder, context);
}
代码示例来源:origin: org.geoserver.community/gs-ysld
@Test
public void testScaleNegativeLevel() throws Exception {
GridSetBroker broker = createMock(GridSetBroker.class);
GridSet set = createMock(GridSet.class);
expect(broker.get("test")).andStubReturn(set);
expect(set.getNumLevels()).andStubReturn(5);
replay(broker, set);
ZoomContextFinder finder = new GWCZoomContextFinder(broker);
ZoomContext zContext = finder.get("test");
double denom = zContext.getScaleDenominator(-1);
assertThat(denom, is(Double.POSITIVE_INFINITY));
verify(broker, set);
}
代码示例来源:origin: geotools/geotools
expect(zctxt.isInRange(0)).andStubReturn(true);
expect(zctxt.isInRange(2)).andStubReturn(true);
expect(zctxt.isInRange(5)).andStubReturn(true);
expect(zctxt.isInRange(-1)).andStubReturn(false);
expect(zctxt.isInRange(6)).andStubReturn(false);
代码示例来源:origin: geotools/geotools
@SuppressWarnings("unchecked")
@Test
public void testNamedWithFinder() throws IOException {
String yaml =
"grid:\n"
+ " name: test\n"
+ "feature-styles: \n"
+ "- name: name\n"
+ " rules:\n"
+ " - zoom: "
+ tuple(0, 0);
ZoomContextFinder finder = createMock(ZoomContextFinder.class);
ZoomContext context = createMock(ZoomContext.class);
expect(finder.get("test")).andReturn(context);
expect(context.getRange(0, 0)).andReturn(new ScaleRange(42, 64));
replay(finder, context);
StyledLayerDescriptor sld = Ysld.parse(yaml, Arrays.asList(finder), (ResourceLocator) null);
FeatureTypeStyle fs = SLD.defaultStyle(sld).featureTypeStyles().get(0);
fs.rules().get(0).getMaxScaleDenominator();
assertThat(
(Iterable<Rule>) fs.rules(),
hasItems(
allOf(
Matchers.<Rule>hasProperty(
"maxScaleDenominator", Matchers.closeTo(64, 0.0000001d)),
Matchers.<Rule>hasProperty(
"minScaleDenominator", Matchers.closeTo(42, 0.0000001d)))));
verify(finder, context);
}
代码示例来源:origin: org.geoserver.community/gs-ysld
@Test
public void testScalePastEnd() throws Exception {
GridSetBroker broker = createMock(GridSetBroker.class);
GridSet set = createMock(GridSet.class);
expect(broker.get("test")).andStubReturn(set);
expect(set.getNumLevels()).andStubReturn(5);
replay(broker, set);
ZoomContextFinder finder = new GWCZoomContextFinder(broker);
ZoomContext zContext = finder.get("test");
double denom = zContext.getScaleDenominator(5);
assertThat(denom, is(0d));
verify(broker, set);
}
代码示例来源:origin: org.geotools/gt-ysld
@Override
protected void validateParsed(Integer parsed, ScalarEvent evt, YsldValidateContext context) {
if (!context.getZCtxt().isInRange(parsed)) {
context.error(
String.format("Zoom level %d is out of range", parsed), evt.getStartMark());
}
}
}
代码示例来源:origin: org.geotools/gt-ysld
private ScaleRange parseZoom(YamlMap r, YamlParseContext context) {
if (r.has("zoom")) {
ZoomContext zCtxt = getZoomContext(context);
Object value = r.get("zoom");
Tuple t = null;
try {
t = Tuple.of(2).parse(value);
} catch (IllegalArgumentException e) {
throw new IllegalArgumentException(
String.format("Bad zoom value: '%s', must be of form [<min>,<max>]", value),
e);
}
@Nullable Integer min = null;
@Nullable Integer max = null;
if (t.at(0) != null) {
if (!t.strAt(0).equalsIgnoreCase("min")) {
min = Integer.parseInt(t.strAt(0));
}
}
if (t.at(1) != null) {
if (!t.strAt(1).equalsIgnoreCase("max")) {
max = Integer.parseInt(t.strAt(1));
}
}
return zCtxt.getRange(min, max);
} else {
return null;
}
}
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 4 年前。
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 4 年前。
我也是 Geotools 和 Maven 的新手。我尝试了快速入门来开始使用地理工具,一切都运行良好,直到我尝试创建示例应用程序。所有以 org.geotools 开头的导入都被标记为不存在。查找依赖
我目前正在使用 GeoTools 工具包对海洋船只数据进行计算,例如计算两个经/纬度点之间的大圆距离。我还有两个需要满足的其他要求,但我不确定在 GeoTools 中的什么地方可以找到执行此类计算的类
我正在研究一个Java项目,该项目需要将WGS84转换为UMT。我使用geotools v20.5通过以下代码创建了一个转换: transform = CRS.findMathTransform(
有人可以告诉我如何通过 java geotools api 获取特征的顶点吗? 就我而言,我在postgis中有一个多边形层,我可以查询该层的所有特征,并且我需要知道每个特征的顶点。
我正在使用 geotools.js 将操作系统网格引用转换为纬度和经度。不幸的是,默认情况下(我相信)输出限制为小数点后两位。为了更准确的读数,我需要它是小数点后 5 位。 我尝试在自己的代码中删除对
我正在使用 geotools 库。我的目标是输入一个坐标,然后获取包含它的要素信息。 Geotools Quickstart 教程的 map 完全按照我想要的方式使用我在下面用红色圈出的按钮。但是,我
我正在使用 GeoTools Java 库进行一些几何计算。就我而言,我使用的是一个形状文件,其中包含某个城市的所有邻域多面体。我想知道那个城市的每一个可能的坐标,它对应于哪个街区。所以我的方法是简单
我正在使用 Java Geotools 库来检查 POINT(...) 是否包含在 POLYGON(...) 中。 我已经完成了: Geometry sPG = reader.read(wktStar
本文整理了Java中org.geotools.util.WeakCollectionCleaner类的一些代码示例,展示了WeakCollectionCleaner类的具体用法。这些代码示例主要来源于
本文整理了Java中org.geotools.resources.XArray类的一些代码示例,展示了XArray类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Mave
本文整理了Java中org.geotools.resources.XMath类的一些代码示例,展示了XMath类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等
本文整理了Java中org.geotools.xs.XSSchema类的一些代码示例,展示了XSSchema类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平
本文整理了Java中org.geotools.ysld.Ysld类的一些代码示例,展示了Ysld类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些
本文整理了Java中org.geotools.ysld.YamlSeq类的一些代码示例,展示了YamlSeq类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平
本文整理了Java中org.geotools.ysld.YamlUtil类的一些代码示例,展示了YamlUtil类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven
关闭。这个问题是opinion-based .它目前不接受答案。 想改善这个问题吗?更新问题,以便可以通过 editing this post 用事实和引文回答问题. 6 个月前关闭。 Improve
我正在实现轨迹点的插值。所以,基本上,我需要沿着从起点到终点的方位角创建几个点。问题是,我无法将创建的点添加到集合中: SimpleFeatureType featureType = featureS
我有很多点导致 getOrthodromicDistance 方法在 geotools lib 中失败并出现异常,而这些点是有效的经纬度点: 抛出异常的点(纬度,经度): val p1= (5.318
我是一名优秀的程序员,十分优秀!