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

Java CityGML类代码示例

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

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



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

示例1: createWorker

import org.citygml4j.model.citygml.CityGML; //导入依赖的package包/类
@Override
public Worker<CityGML> createWorker() {
	DBImportWorker dbWorker = null;

	try {
		dbWorker = new DBImportWorker(dbConnectionPool,
				jaxbBuilder,
				xlinkWorkerPool, 
				lookupServerManager,
				importFilter,
				config, 
				eventDispatcher);
	} catch (SQLException sqlEx) {
		// could not instantiate DBWorker
	}

	return dbWorker;
}
 
开发者ID:3dcitydb,项目名称:importer-exporter-oracle,代码行数:19,代码来源:DBImportWorkerFactory.java


示例2: getCityGMLClass

import org.citygml4j.model.citygml.CityGML; //导入依赖的package包/类
@Override
public CityGMLClass getCityGMLClass() {
	if (citygmlResolved.get())
		return citygml.getCityGMLClass();

	if (typeResolved.compareAndSet(false, true)) {
		try {
			ElementInfo info = jaxbReader.elementChecker.getElementInfo(firstElement);
			if (info != null) {
				if (info.getFeatureClass() != null
						&& jaxbReader.elementChecker.isCityGMLElement(firstElement)
						&& CityGML.class.isAssignableFrom(info.getFeatureClass()))
					type = CityGMLClass.fromModelClass(info.getFeatureClass().asSubclass(CityGML.class));
				else
					type = CityGMLClass.ADE_COMPONENT;
			}
		} catch (MissingADESchemaException e) {
			//
		}
	}

	return type;
}
 
开发者ID:citygml4j,项目名称:citygml4j,代码行数:24,代码来源:XMLChunkImpl.java


示例3: getTypeMapper

import org.citygml4j.model.citygml.CityGML; //导入依赖的package包/类
private CheckedTypeMapper<CityGML> getTypeMapper() {
	if (typeMapper == null) {
		lock.lock();
		try {
			if (typeMapper == null) {
				typeMapper = CheckedTypeMapper.<CityGML>create()
						.with(CityFurnitureType.class, this::unmarshalCityFurniture)
						.with(JAXBElement.class, this::unmarshal);
			}
		} finally {
			lock.unlock();
		}
	}

	return typeMapper;
}
 
开发者ID:citygml4j,项目名称:citygml4j,代码行数:17,代码来源:CityFurniture100Unmarshaller.java


示例4: getTypeMapper

import org.citygml4j.model.citygml.CityGML; //导入依赖的package包/类
private CheckedTypeMapper<CityGML> getTypeMapper() {
	if (typeMapper == null) {
		lock.lock();
		try {
			if (typeMapper == null) {
				typeMapper = CheckedTypeMapper.<CityGML>create()
						.with(GenericCityObjectType.class, this::unmarshalGenericCityObject)
						.with(DateAttributeType.class, this::unmarshalDateAttribute)
						.with(DoubleAttributeType.class, this::unmarshalDoubleAttribute)
						.with(IntAttributeType.class, this::unmarshalIntAttribute)
						.with(StringAttributeType.class, this::unmarshalStringAttribute)
						.with(UriAttributeType.class, this::unmarshalUriAttribute)
						.with(JAXBElement.class, this::unmarshal);
			}
		} finally {
			lock.unlock();
		}
	}

	return typeMapper;
}
 
开发者ID:citygml4j,项目名称:citygml4j,代码行数:22,代码来源:Generics100Unmarshaller.java


示例5: getTypeMapper

import org.citygml4j.model.citygml.CityGML; //导入依赖的package包/类
private CheckedTypeMapper<CityGML> getTypeMapper() {
	if (typeMapper == null) {
		lock.lock();
		try {
			if (typeMapper == null) {
				typeMapper = CheckedTypeMapper.<CityGML>create()
						.with(PlantCoverType.class, this::unmarshalPlantCover)
						.with(SolitaryVegetationObjectType.class, this::unmarshalSolitaryVegetationObject)
						.with(JAXBElement.class, this::unmarshal);
			}
		} finally {
			lock.unlock();
		}
	}

	return typeMapper;
}
 
开发者ID:citygml4j,项目名称:citygml4j,代码行数:18,代码来源:Vegetation200Unmarshaller.java


示例6: getTypeMapper

import org.citygml4j.model.citygml.CityGML; //导入依赖的package包/类
private CheckedTypeMapper<CityGML> getTypeMapper() {
	if (typeMapper == null) {
		lock.lock();
		try {
			if (typeMapper == null) {
				typeMapper = CheckedTypeMapper.<CityGML>create()
						.with(AppearancePropertyType.class, this::unmarshalAppearanceProperty)
						.with(MaterialType.class, this::unmarshalMaterial)
						.with(SimpleTextureType.class, this::unmarshalSimpleTexture)
						.with(TexturedSurfaceType.class, this::unmarshalTexturedSurface)
						.with(TextureTypeType.class, this::unmarshalTextureType)
						.with(JAXBElement.class, this::unmarshal);
			}
		} finally {
			lock.unlock();
		}
	}

	return typeMapper;
}
 
开发者ID:citygml4j,项目名称:citygml4j,代码行数:21,代码来源:TexturedSurface100Unmarshaller.java


示例7: getTypeMapper

import org.citygml4j.model.citygml.CityGML; //导入依赖的package包/类
private CheckedTypeMapper<CityGML> getTypeMapper() {
	if (typeMapper == null) {
		lock.lock();
		try {
			if (typeMapper == null) {
				typeMapper = CheckedTypeMapper.<CityGML>create()
						.with(CityObjectGroupType.class, this::unmarshalCityObjectGroup)
						.with(CityObjectGroupMemberType.class, this::unmarshalCityObjectGroupMember)
						.with(CityObjectGroupParentType.class, this::unmarshalCityObjectGroupParent)
						.with(JAXBElement.class, this::unmarshal);
			}
		} finally {
			lock.unlock();
		}
	}

	return typeMapper;
}
 
开发者ID:citygml4j,项目名称:citygml4j,代码行数:19,代码来源:CityObjectGroup200Unmarshaller.java


示例8: assignGenericProperty

import org.citygml4j.model.citygml.CityGML; //导入依赖的package包/类
public boolean assignGenericProperty(ADEGenericElement genericProperty, QName substitutionGroup, CityGML dest) {
	String name = substitutionGroup.getLocalPart();
	boolean success = true;

	if (dest instanceof AbstractCityObject && name.equals("_GenericApplicationPropertyOfCityObject"))
		((AbstractCityObject)dest).addGenericApplicationPropertyOfCityObject(genericProperty);
	else if (dest instanceof AbstractSite && name.equals("_GenericApplicationPropertyOfSite"))
		((AbstractSite)dest).addGenericApplicationPropertyOfSite(genericProperty);
	else if (dest instanceof Address && name.equals("_GenericApplicationPropertyOfAddress"))
		((Address)dest).addGenericApplicationPropertyOfAddress(genericProperty);
	else if (dest instanceof CityModel && name.equals("_GenericApplicationPropertyOfCityModel"))
		((CityModel)dest).addGenericApplicationPropertyOfCityModel(genericProperty);
	else 
		success = false;

	return success;
}
 
开发者ID:citygml4j,项目名称:citygml4j,代码行数:18,代码来源:Core200Unmarshaller.java


示例9: getTypeMapper

import org.citygml4j.model.citygml.CityGML; //导入依赖的package包/类
private CheckedTypeMapper<CityGML> getTypeMapper() {
	if (typeMapper == null) {
		lock.lock();
		try {
			if (typeMapper == null) {
				typeMapper = CheckedTypeMapper.<CityGML>create()
						.with(AddressType.class, this::unmarshalAddress)
						.with(AddressPropertyType.class, this::unmarshalAddressProperty)
						.with(CityModelType.class, this::unmarshalCityModel)
						.with(ExternalObjectReferenceType.class, this::unmarshalExternalObject)
						.with(ExternalReferenceType.class, this::unmarshalExternalReference)
						.with(GeneralizationRelationType.class, this::unmarshalGeneralizationRelation)
						.with(ImplicitGeometryType.class, this::unmarshalImplicitGeometry)
						.with(ImplicitRepresentationPropertyType.class, this::unmarshalImplicitRepresentationProperty)
						.with(XalAddressPropertyType.class, this::unmarshalXalAddressProperty)
						.with(FeaturePropertyType.class, this::unmarshalCityObjectMember)
						.with(JAXBElement.class, this::unmarshal);
			}
		} finally {
			lock.unlock();
		}
	}

	return typeMapper;
}
 
开发者ID:citygml4j,项目名称:citygml4j,代码行数:26,代码来源:Core100Unmarshaller.java


示例10: getTypeMapper

import org.citygml4j.model.citygml.CityGML; //导入依赖的package包/类
private CheckedTypeMapper<CityGML> getTypeMapper() {
	if (typeMapper == null) {
		lock.lock();
		try {
			if (typeMapper == null) {
				typeMapper = CheckedTypeMapper.<CityGML>create()
						.with(AuxiliaryTrafficAreaType.class, this::unmarshalAuxiliaryTrafficArea)
						.with(AuxiliaryTrafficAreaPropertyType.class, this::unmarshalAuxiliaryTrafficAreaProperty)
						.with(RailwayType.class, this::unmarshalRailway)
						.with(RoadType.class, this::unmarshalRoad)
						.with(SquareType.class, this::unmarshalSquare)
						.with(TrackType.class, this::unmarshalTrack)
						.with(TrafficAreaType.class, this::unmarshalTrafficArea)
						.with(TrafficAreaPropertyType.class, this::unmarshalTrafficAreaProperty)
						.with(TransportationComplexType.class, this::unmarshalTransportationComplex)
						.with(JAXBElement.class, this::unmarshal);
			}
		} finally {
			lock.unlock();
		}
	}

	return typeMapper;
}
 
开发者ID:citygml4j,项目名称:citygml4j,代码行数:25,代码来源:Transportation200Unmarshaller.java


示例11: assignGenericProperty

import org.citygml4j.model.citygml.CityGML; //导入依赖的package包/类
public boolean assignGenericProperty(ADEGenericElement genericProperty, QName substitutionGroup, CityGML dest) {
	String name = substitutionGroup.getLocalPart();
	boolean success = true;

	if (dest instanceof AbstractTransportationObject && name.equals("_GenericApplicationPropertyOfTransportationObject"))
		((AbstractTransportationObject)dest).addGenericApplicationPropertyOfTransportationObject(genericProperty);
	else if (dest instanceof AuxiliaryTrafficArea && name.equals("_GenericApplicationPropertyOfAuxiliaryTrafficArea"))
		((AuxiliaryTrafficArea)dest).addGenericApplicationPropertyOfAuxiliaryTrafficArea(genericProperty);
	else if (dest instanceof TransportationComplex && name.equals("_GenericApplicationPropertyOfTransportationComplex"))
		((TransportationComplex)dest).addGenericApplicationPropertyOfTransportationComplex(genericProperty);
	else if (dest instanceof Railway && name.equals("_GenericApplicationPropertyOfRailway"))
		((Railway)dest).addGenericApplicationPropertyOfRailway(genericProperty);
	else if (dest instanceof Road && name.equals("_GenericApplicationPropertyOfRoad"))
		((Road)dest).addGenericApplicationPropertyOfRoad(genericProperty);
	else if (dest instanceof Square && name.equals("_GenericApplicationPropertyOfSquare"))
		((Square)dest).addGenericApplicationPropertyOfSquare(genericProperty);
	else if (dest instanceof Track && name.equals("_GenericApplicationPropertyOfTrack"))
		((Track)dest).addGenericApplicationPropertyOfTrack(genericProperty);
	else if (dest instanceof TrafficArea && name.equals("_GenericApplicationPropertyOfTrafficArea"))
		((TrafficArea)dest).addGenericApplicationPropertyOfTrafficArea(genericProperty);
	else 
		success = false;

	return success;
}
 
开发者ID:citygml4j,项目名称:citygml4j,代码行数:26,代码来源:Transportation200Unmarshaller.java


示例12: getTypeMapper

import org.citygml4j.model.citygml.CityGML; //导入依赖的package包/类
private CheckedTypeMapper<CityGML> getTypeMapper() {
	if (typeMapper == null) {
		lock.lock();
		try {
			if (typeMapper == null) {
				typeMapper = CheckedTypeMapper.<CityGML>create()
						.with(LandUseType.class, this::unmarshalLandUse)
						.with(JAXBElement.class, this::unmarshal);
			}
		} finally {
			lock.unlock();
		}
	}

	return typeMapper;
}
 
开发者ID:citygml4j,项目名称:citygml4j,代码行数:17,代码来源:LandUse100Unmarshaller.java


示例13: assignGenericProperty

import org.citygml4j.model.citygml.CityGML; //导入依赖的package包/类
public boolean assignGenericProperty(ADEGenericElement genericProperty, QName substitutionGroup, CityGML dest) {
	String name = substitutionGroup.getLocalPart();
	boolean success = true;

	if (dest instanceof AbstractWaterObject && name.equals("_GenericApplicationPropertyOfWaterObject"))
		((AbstractWaterObject)dest).addGenericApplicationPropertyOfWaterObject(genericProperty);		
	else if (dest instanceof AbstractWaterBoundarySurface && name.equals("_GenericApplicationPropertyOfWaterBoundarySurface"))
		((AbstractWaterBoundarySurface)dest).addGenericApplicationPropertyOfWaterBoundarySurface(genericProperty);		
	else if (dest instanceof WaterBody && name.equals("_GenericApplicationPropertyOfWaterBody"))
		((WaterBody)dest).addGenericApplicationPropertyOfWaterBody(genericProperty);		
	else if (dest instanceof WaterClosureSurface && name.equals("_GenericApplicationPropertyOfWaterClosureSurface"))
		((WaterClosureSurface)dest).addGenericApplicationPropertyOfWaterClosureSurface(genericProperty);		
	else if (dest instanceof WaterGroundSurface && name.equals("_GenericApplicationPropertyOfWaterGroundSurface"))
		((WaterGroundSurface)dest).addGenericApplicationPropertyOfWaterGroundSurface(genericProperty);		
	else if (dest instanceof WaterSurface && name.equals("_GenericApplicationPropertyOfWaterSurface"))
		((WaterSurface)dest).addGenericApplicationPropertyOfWaterSurface(genericProperty);		
	else
		success = false;

	return success;
}
 
开发者ID:citygml4j,项目名称:citygml4j,代码行数:22,代码来源:WaterBody100Unmarshaller.java


示例14: getTypeMapper

import org.citygml4j.model.citygml.CityGML; //导入依赖的package包/类
private CheckedTypeMapper<CityGML> getTypeMapper() {
	if (typeMapper == null) {
		lock.lock();
		try {
			if (typeMapper == null) {
				typeMapper = CheckedTypeMapper.<CityGML>create()
						.with(BreaklineReliefType.class, this::unmarshalBreaklineRelief)
						.with(GridPropertyType.class, this::unmarshalGridProperty)
						.with(MassPointReliefType.class, this::unmarshalMassPointRelief)
						.with(RasterReliefType.class, this::unmarshalRasterRelief)
						.with(ReliefComponentPropertyType.class, this::unmarshalReliefComponentProperty)
						.with(ReliefFeatureType.class, this::unmarshalReliefFeature)
						.with(TinPropertyType.class, this::unmarshalTinProperty)
						.with(TINReliefType.class, this::unmarshalTINRelief)
						.with(JAXBElement.class, this::unmarshal);
			}
		} finally {
			lock.unlock();
		}
	}

	return typeMapper;
}
 
开发者ID:citygml4j,项目名称:citygml4j,代码行数:24,代码来源:Relief100Unmarshaller.java


示例15: assignGenericProperty

import org.citygml4j.model.citygml.CityGML; //导入依赖的package包/类
public boolean assignGenericProperty(ADEGenericElement genericProperty, QName substitutionGroup, CityGML dest) {
	String name = substitutionGroup.getLocalPart();
	boolean success = true;

	if (dest instanceof AbstractReliefComponent && name.equals("_GenericApplicationPropertyOfReliefComponent"))
		((AbstractReliefComponent)dest).addGenericApplicationPropertyOfReliefComponent(genericProperty);
	else if (dest instanceof BreaklineRelief && name.equals("_GenericApplicationPropertyOfBreaklineRelief"))
		((BreaklineRelief)dest).addGenericApplicationPropertyOfBreaklineRelief(genericProperty);
	else if (dest instanceof MassPointRelief && name.equals("_GenericApplicationPropertyOfMassPointRelief"))
		((MassPointRelief)dest).addGenericApplicationPropertyOfMassPointRelief(genericProperty);
	else if (dest instanceof RasterRelief && name.equals("_GenericApplicationPropertyOfRasterRelief"))
		((RasterRelief)dest).addGenericApplicationPropertyOfRasterRelief(genericProperty);
	else if (dest instanceof ReliefFeature && name.equals("_GenericApplicationPropertyOfReliefFeature"))
		((ReliefFeature)dest).addGenericApplicationPropertyOfReliefFeature(genericProperty);
	else if (dest instanceof TINRelief && name.equals("_GenericApplicationPropertyOfTinRelief"))
		((TINRelief)dest).addGenericApplicationPropertyOfTinRelief(genericProperty);
	else 
		success = false;

	return success;
}
 
开发者ID:citygml4j,项目名称:citygml4j,代码行数:22,代码来源:Relief200Unmarshaller.java


示例16: readCityGMLFile

import org.citygml4j.model.citygml.CityGML; //导入依赖的package包/类
/**
 * Returns a list for BuildingCallable read by CityGML file
 * 
 * @param pathtocitygmlfile
 * @param options
 * @return List<BuildingCallable>
 * @throws Exception
 */
public List<BuildingCallable> readCityGMLFile(String pathtocitygmlfile, Options options) throws Exception {

	this.options = options;
	
	List<BuildingCallable> buildings = new ArrayList<BuildingCallable>();
	
	CityGMLContext ctx = new CityGMLContext();
	CityGMLBuilder builder = ctx.createCityGMLBuilder();
	CityGMLInputFactory in = builder.createCityGMLInputFactory();
	CityGMLReader reader = in.createCityGMLReader(new File(pathtocitygmlfile));
	
	while (reader.hasNext()) {
		CityGML citygml = reader.nextFeature();
		
		if (citygml.getCityGMLClass() == CityGMLClass.CITY_MODEL) {
			CityModel cityModel = (CityModel)citygml;
			
			for (CityObjectMember cityObjectMember : cityModel.getCityObjectMember()) {
				AbstractCityObject cityObject = cityObjectMember.getCityObject();
				if (cityObject.getCityGMLClass() == CityGMLClass.BUILDING){
					
					Building building = (Building)cityObject;
					String buildingID = building.getId();
					BuildingCallable buildingcallable = new BuildingCallable();
					buildingcallable.setBsp(building.getBoundedBySurface());
					buildingcallable.setBuildingId(buildingID);
					buildingcallable.setOptions(options);
					buildings.add(buildingcallable);
				}	
			}
		}	
	}			
	
	reader.close();
	return buildings;
}
 
开发者ID:SteuerHorst,项目名称:Voluminator,代码行数:45,代码来源:BuildingReader.java


示例17: createWorker

import org.citygml4j.model.citygml.CityGML; //导入依赖的package包/类
@Override
public Worker<CityGML> createWorker() {
	DBImportWorker dbWorker = null;

	try {
		dbWorker = connection == null ? new DBImportWorker(schemaMapping, cityGMLBuilder, xlinkWorkerPool,
				uidCacheManager, filter, affineTransformer, importLogger, config, eventDispatcher) :
			new DBImportWorker(connection, databaseAdapter, schemaMapping, cityGMLBuilder, xlinkWorkerPool,
					uidCacheManager, filter, affineTransformer, importLogger, config, eventDispatcher);
	} catch (SQLException e) {
		LOG.error("Failed to create import worker: " + e.getMessage());
	}

	return dbWorker;
}
 
开发者ID:3dcitydb,项目名称:importer-exporter,代码行数:16,代码来源:DBImportWorkerFactory.java


示例18: FeatureReaderWorker

import org.citygml4j.model.citygml.CityGML; //导入依赖的package包/类
public FeatureReaderWorker(WorkerPool<CityGML> dbWorkerPool,
		Config config,
		EventDispatcher eventDispatcher) {
	this.dbWorkerPool = dbWorkerPool;
	this.eventDispatcher = eventDispatcher;

	useValidation = config.getProject().getImporter().getXMLValidation().isSetUseXMLValidation();
}
 
开发者ID:3dcitydb,项目名称:importer-exporter,代码行数:9,代码来源:FeatureReaderWorker.java


示例19: FeatureReaderWorkerFactory

import org.citygml4j.model.citygml.CityGML; //导入依赖的package包/类
public FeatureReaderWorkerFactory(WorkerPool<CityGML> dbWorkerPool,
		Config config,
		EventDispatcher eventDispatcher) {
	this.dbWorkerPool = dbWorkerPool;
	this.config = config;
	this.eventDispatcher = eventDispatcher;
}
 
开发者ID:3dcitydb,项目名称:importer-exporter,代码行数:8,代码来源:FeatureReaderWorkerFactory.java


示例20: getCityGMLClass

import org.citygml4j.model.citygml.CityGML; //导入依赖的package包/类
public static CityGMLClass getCityGMLClass(int objectClassId) {
	for (Entry<Class<? extends AbstractGML>, Integer> entry : objectClassIds.entrySet()) {
		if (entry.getValue() == objectClassId) {
			Class<? extends AbstractGML> typeClass = entry.getKey();
			if (CityGML.class.isAssignableFrom(typeClass))				
				return CityGMLClass.fromModelClass(typeClass.asSubclass(CityGML.class));
		}
	}
	
	ADEExtension extension = ADEExtensionManager.getInstance().getExtensionByObjectClassId(objectClassId);
	if (extension != null)
		return CityGMLClass.ADE_COMPONENT;
	
	return CityGMLClass.UNDEFINED;
}
 
开发者ID:3dcitydb,项目名称:importer-exporter,代码行数:16,代码来源:Util.java



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

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

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

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

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

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