• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Java Citations类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.geotools.metadata.iso.citation.Citations的典型用法代码示例。如果您正苦于以下问题:Java Citations类的具体用法?Java Citations怎么用?Java Citations使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



Citations类属于org.geotools.metadata.iso.citation包,在下文中一共展示了Citations类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: createComboSelectionSRS

import org.geotools.metadata.iso.citation.Citations; //导入依赖的package包/类
/**
 * Creates the SRS from the selected SRID
 * 
 * @param srid The srid from the selected Entry in Combo
 */
private void createComboSelectionSRS(String srid) {
	String authority_epsg = Citations.getIdentifier(Citations.EPSG);
	CRSAuthorityFactory factory = ReferencingFactoryFinder.getCRSAuthorityFactory(authority_epsg, null);
	try {
		if(srid == ""){
			selectedSRS = SRS.UNKNOWN;
		}else{
			selectedSRS = new SRS(authority_epsg, srid, factory.getDescriptionText(srid).toString());						
		}
	} catch (Exception ex) {
		selectedSRS = new SRS("GeoKettle", srid, "Custom");
	}
}
 
开发者ID:icholy,项目名称:geokettle-2.0,代码行数:19,代码来源:SetSRSDialog.java


示例2: getProperties

import org.geotools.metadata.iso.citation.Citations; //导入依赖的package包/类
/**
 * Fills a {@link SRSInit} object with the correct initialization values
 * needed by constructors (authority, description, srid).
 * 
 * Note: The method tries to retrieve as much information from the
 * {@link CoordinateReferenceSystem} <code>crs</code> as possible.
 * 
 * @param init Pass the {@link SRSInit} object to allow multiple return-values.
 * @param crs The {@link CoordinateReferenceSystem} where the information
 *            are retrieved from.
 */
private void getProperties(SRSInit init, CoordinateReferenceSystem crs) {
	// Try to find srid, authority and description from the CRS.
	// Abort if the correct EPSG identifiers were found.
	Set<ReferenceIdentifier> identifiers = crs.getIdentifiers();
	if (!identifiers.isEmpty()) {
		for (ReferenceIdentifier id : identifiers) {
			init.auth = Citations.getIdentifier(id.getAuthority());
			init.srid = id.getCode();
			try {					
				CRSAuthorityFactory factory = ReferencingFactoryFinder.getCRSAuthorityFactory(init.auth, HINTS);
				init.desc = factory.getDescriptionText(init.srid).toString();
				this.is_custom = false;
				break;
			} catch (Exception e) {
				this.is_custom = true;
			}
		}
	} else 
		this.is_custom = true;		

	// If this is not an EPSG spatial reference system, use WKT to describe it but get
	// as much information as possible about the SRS from the WKT.
	if (this.is_custom) {
		init.srid = Const.NVL(init.srid, Integer.toString(UNKNOWN_SRID));
		init.auth = Const.NVL(init.auth, "Custom Authority");
		init.desc = Const.NVL(init.desc, "Custom SRS from WKT");
	}
}
 
开发者ID:icholy,项目名称:geokettle-2.0,代码行数:40,代码来源:SRS.java


示例3: toWKTFormat

import org.geotools.metadata.iso.citation.Citations; //导入依赖的package包/类
public void toWKTFormat() throws Exception {
    // toWKTFormat start
    CoordinateReferenceSystem crs = CRS.decode("EPSG:32735");
    Formattable f = (Formattable) CRS.decode("EPSG:32735", true);
    String wkt = f.toWKT(Citations.ESRI, 2); // use 0 indent for single line
    
    System.out.println("wkt for EPSG:32735 (ESRI)");
    System.out.println( wkt );
    // toWKTFormat end
}
 
开发者ID:ianturton,项目名称:geotools-cookbook,代码行数:11,代码来源:ReferencingExamples.java


示例4: main

import org.geotools.metadata.iso.citation.Citations; //导入依赖的package包/类
public static void main(String args[]) {
    MetadataExamples examples = new MetadataExamples();
    
    examples.exampleRange();
    examples.referenceDocument(Citations.EPSG);
    examples.referenceDocument(Citations.OGC);
    examples.referenceDocument(Citations.ORACLE);
    examples.exampleCitation(examples);
    examples.telephone();
    examples.wkt();
}
 
开发者ID:ianturton,项目名称:geotools-cookbook,代码行数:12,代码来源:MetadataExamples.java


示例5: exampleCitation

import org.geotools.metadata.iso.citation.Citations; //导入依赖的package包/类
private void exampleCitation(MetadataExamples examples) {
    CitationImpl citation = new CitationImpl();
    citation.setEditionDate(new Date()); // today
    
    Collection<ResponsibleParty> parties = Collections.singleton(ResponsiblePartyImpl.GEOTOOLS);
    citation.setCitedResponsibleParties(parties);
    
    referenceDocument(Citations.ORACLE);
}
 
开发者ID:ianturton,项目名称:geotools-cookbook,代码行数:10,代码来源:MetadataExamples.java


示例6: Crop

import org.geotools.metadata.iso.citation.Citations; //导入依赖的package包/类
/**
    * Constructs a default {@code "Crop"} operation.
    */
public Crop() {
	super(new DefaultParameterDescriptorGroup(Citations.GEOTOOLS,
			"CoverageCrop", new ParameterDescriptor[] { SOURCE_0,
					CROP_ENVELOPE, CROP_ROI,
					ROI_OPTIMISATION_TOLERANCE,
					FORCE_MOSAIC}));

}
 
开发者ID:lizardtechblog,项目名称:ExpressZip,代码行数:12,代码来源:Crop.java



注:本文中的org.geotools.metadata.iso.citation.Citations类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java NameIDPolicy类代码示例发布时间:2022-05-22
下一篇:
Java LogBlock类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap