本科毕业论文---gis在房产和土地信息管理中的应用论文.doc

本科毕业论文---gis在房产和土地信息管理中的应用论文.doc

ID:13391764

大小:397.00 KB

页数:15页

时间:2018-07-22

上传者:zhaojunhui
本科毕业论文---gis在房产和土地信息管理中的应用论文.doc_第1页
本科毕业论文---gis在房产和土地信息管理中的应用论文.doc_第2页
本科毕业论文---gis在房产和土地信息管理中的应用论文.doc_第3页
本科毕业论文---gis在房产和土地信息管理中的应用论文.doc_第4页
本科毕业论文---gis在房产和土地信息管理中的应用论文.doc_第5页
资源描述:

《本科毕业论文---gis在房产和土地信息管理中的应用论文.doc》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库

GIS在房产和土地信息管理中的应用GIS在房产和土地信息管理中的应用摘要:利用GIS技术对校园房产与土地信息进行可视化管理,可高效、准确地掌握房产和土地资源及其空间分布情况,为学校资产管理部门提供快速有效的决策和管理的现代化工具。在对系统总体结构、功能、数据库进行设计的基础上,采用GIS组件技术,将MapX组件嵌入到VisualBasic6.0可视化开发环境中,以Access为后台数据库,开发了集数据录入、查询、修改、统计及报表等功能为一体的高校房产管理信息系统,该系统在实际应用中收到良好的效果。关键词:计算机应用房产和土地信息管理GISMapX随着GIS技术的迅速发展,我国各行各业的“数字化”建设取得巨大进步,“数字中国”、“数字城市”网络化管理的愿望正在变为现实。由于高等教育的迅速发展和办学规模的不断扩大,学校土地、房产迅速增加和变更。图形和属性信息不一致,高校资产管理部门过去的管理方式、管理手段及管理软件已不能满足新形势管理需要[1]。为了适应信息时代发展的需要,建立高校房产和宗地管理信息系统势在必行。以“兰州交通大学房产和宗地管理信息系统”软件开发为例,探讨了采用VisualBasic6.0语言,基于MapX组件和数据库软件Access,实现校园房产和土地信息数据入库、更新、修改、查询、统计和报表等功能,为提高学校相关部门的管理效率和信息化管理水平发挥巨大作用、产生深远影响。该系统已在学校智能部门中应用,为校园信息化管理提供可视化的平台。1基于VB的MapX组件实现公房管理1.1组件式GIS开发平台通常可设计为三级结构:(1)基础组件面向空间数据管理,提供基础的交互过程,并能以灵活的方式与数据库系统连接。(2)高级通用组件15 GIS在房产和土地信息管理中的应用由基础组件结构而成,面向通用功能,简化用户开发过程,如显示工具组件、选择工具组件、编辑工具组件、属性浏览器组件等,它们之间的协同控制消息都被封装起来。这级组件经过封装后,面向通用功能,使二次开发更为简单[2]。(1)行业性组件抽象出行业应用的特定算法,固化到组件中,进一步加速开发过程。以GPS监控为例,对于GPS应用,除了需要地图显示、信息查询等一般的GPS功能外,还需要特定的应用功能,如动态目标显示、目标锁定、轨迹显示灯。这些GPS行业性应用功能组件被封装起来后,开发工作就可简化为设置显示目标的图例、轨迹显示的颜色、锁定的目标以及调用、接受数据的方法等。1.2MapX开发方式(1)图层化MapX是按图层组织地图,将一副计算机地图划分成多个透明层叠的图层,每个图层包括了整个地图的一种信息。为了便于对图层进行编辑和管理,可以通过控制图层集合对象来协调处理各图层的关系。地图中的所有图层组成图层集合,要在MapX中进行增加、删除或改变图层等操作,必须通过图层集合。每个地图对象都包括了一个图层集合,图层集合又是由图层对象组成,因此通过图层集合访问地图中各个图层。MapX是通过图层集合来控制地图。校园电子地图中设置的图层包括:行政楼、教学楼、实验楼、图书馆、公寓和家属楼、绿地、校园景点、运动场、道路节点、道路线及界线等图层。(2)数据绑定每个地图都有一个数据集合,通过数据集合可以将属性数据与地图空间数据连接起来。数据绑定是将外部数据引入MapX的过程,外部数据可以是多种类型的数据库,数据绑定后可以在地图上以图元浏览数据或基于这些数据创建专题渲染地图。(3)特征集合和特征查找15 GIS在房产和土地信息管理中的应用在MapX中,地图由图层组成,图层又是由地图特征组成。通常每个图层中只包含一种类型的特征。在MapX中,一个图层中的所有特征构成了一个特征集合。其中每个图元就是一个特征对象,可以通过图层的属性查找定位地理特征,如线、符号或区域特征。为了能够使用该方法,必须使查找图层的Mapinfo表中存在一个索引字段。在各图层中实现找寻地物的方法:ForEachlyRInMap1.LayersIflyR.Name="行政教学楼"ThenSetds=Formmain.Map1.DataSets.Add(miDataSetLayer,lyR)Setftrs=lyR.Search("NAMElike""%"&buildname&"%""")(1)MapX的模型结构MapX组件的基本组成单元是单个对象(Object)和集合(Collection),其中集合包括对象,是多个对象的组合,每种对象和集合负责处理地图某一方面功能[3]。MapX定义了一个类体系,可以有效地组织图形元素、图层及属性数据等对象,主要有以下功能:①显示MapInfo格式的地图。MapX支持与MapInfo一致的数据格式,可直接打开.tab、.gst等文件。②生成和编辑地图对象。MapX中封装了大量的绘图工具,可生成点、线、面和注记等要素,它内部的FeatureFactory对象为要素符号化提供了方法,并允许用户自定义符号。③供对地图进行放大、缩小、漫游和要素选取等操作。在MapX中,应用ToolUsed事件并设定相关参数,便可实现对地图的上述操作。④图层控制。MapX允许用户将要素分层管理,真正创建要素的物理层。图层控制、加载图层、加载图层集的方法如下:.Map1.Layers.LayersDlgMap1.RefreshDialogTitle="加载图层"15 GIS在房产和土地信息管理中的应用.Filter="MapInfoTables(*.tab)|*.tab".DialogTitle="加载图层集".Filter="MapXGeoSet(*.gst)|*.gst"⑤建立属性表。MapX提供了实现数据库中的数据与MapInfo地图关联的方法,对几何数据赋予相应的属性,以满足信息查询的需要。用户可通过图上选取或SQL语句对要素的属性进行访问。2系统模型与功能设计2.1系统模型设计在用户需求分析的基础上,系统的总体结构设计包括:地图数据管理、系统组成、系统界面、系统功能、数据存储管理、数据显示以及数据输入输出,该系统结构如图1所示。图1系统总体结构2.2系统功能设计该系统为学校只能部门对校园房产和宗地进行管理的工具,拥有管理员和拥护两级使用权限,用户可以对数据进行查询、统计和报表输出等基本操作,管理员能够进行所有操作。15 GIS在房产和土地信息管理中的应用图2系统功能结构图2.3数据库结构和数据词典(1)用户管理信息表用户管理表用于存储用户名称,密码和权限(2)土地管理信息表土地管理表用于存储管理员录入的校园宗地信息,以便用户由图查询宗地属性时,显示相关信息。土地信息一般包括如表2的字段。除上字段外还有发证日期、证书号、载明面积、权属性质、取得日期、坐落位置、土地面积(平方米)、土地面积(亩)、金额、使用单位、土地来源、使用状况及备注等。(3)人事住房信息表15 GIS在房产和土地信息管理中的应用人事住房信息表用于存储管理员由excel表导入或由对话框录入的职工住房信息,以便资产部门快速查询,了解职工个人住房和相关信息,避免过去那种低效的翻阅纸质卡片档案的繁琐劳动。人事住房信息内容较多,包括姓名、性别、单位名称、出生年日、最高学历、上大学时间、参加工作时间、离退休时间、职务、职称、配偶姓名、配偶单位、门牌号码、房屋类型、建筑面积、使用面积、售房面积及竣工时间等40多项。(1)建筑物信息建筑物信息表用于存储管理员由对话框录入的公房信息,资产管理员利用查询功能可快速查询各类公房的相关信息和图片,还有建筑物结构、卡片号、资产分类代码、证书号、产权使用人、发证日期、坐落位置、使用状况、竣工日期、建筑面积(平方米)、金额、备注及图片等。(2)楼层信息表楼层信息表包括建筑物名称、楼层、楼层总面积、卫生间、过廊、楼梯、水房、配电室、值班室、水箱、备注及CAD图等。供资产管理人员快速查询每栋楼房的各层信息和图片。(3)房间信息房间信息表包括建筑物名称、楼层、使用单位、房间号、房间名称、使用方向、建筑面积、使用面积、配电室、值班室等信息和图片。供资产管理人员快速查询楼房的各层房间的相关信息。3系统主要功能实现3.1属性数据的输入和输出公房管理信息系统主要用于人事住房信息、公房信息、宗地信息等的查询、统计、报表等工作,提高职能部门的工作效率和管理水平,而这些信息数据种类繁多、录入信息量较大,本系统采用了两种录入方法:一种方法是对已有excel表格数据由程序按字段自动导入ACCESS数据库,这样避免了大量的数据录入工作,并消除了录入过程的错误;另一种方法是采用对话框的方式,将各种数据表中的字段显示在对话框中,以编辑框的方式,直观友好的进行数据的录入、添加、修改和删除等操作。在对属性数据进行统计后,不仅可在对话框中显示数据,而且可形成excel报表,将统计结果输出,呈报有关部门,提高办事效率,快速为职能部门的决策提供依据。3.2查询功能15 GIS在房产和土地信息管理中的应用实现图文互访是系统最大的特点,系统提供了两种方式的查询,一种是从地图到属性的查询、浏览,即从平面图查询指定地物的属性。另一种是从属性到地图的定位查询定位,由地物的属性值如建筑物的名称查询该建筑物在地图中的位置,亮显并放大。3.3统计报表功能统计汇总功能分为攻防统计和居住房统计两大功能板块,其中居住房统计又分为:人事住房统计、租房统计、售房统计。3.3其他功能本系统还包括宗地信息查询、地图显示、面积和距离测量、地图信息查询、输出、保存以及打印等功能。4结束语采用VisualBasic语言结合MapX的开发环境,从分利用了组件式开发的优点,缩短了系统开发的时间,降低了开发的难度,同时也大大提高了系统的信息管理的能力和效率。系统优点如下:(1)实现了对已有数据导入系统的功能以及地图和属性数据的关联关系。(2)实现了对图道属性和由属性到图的双向查询,弥补了MIS系统缺乏空间数据的缺点。(3)实现了对公房信息、土地信息和人事住房等信息的实时更新、统计和报表功能。这种软件开发技术也可用于地下管网与交通信息系统等方面,对类似的软件开发具有一定的参考价值。后续工作也可从三维可视化技术入手,进行空间信息查询。15 GIS在房产和土地信息管理中的应用参考文献[1]Linxiaosong.thedesignanddevelopmentofCampusRealEstatebasedonGIS[J].ChongqingJiaotongUniversity,2004[2]Zhengwenwu,Liuyong.hedesignanddevelopmentofCampusRealEstatebasedonMapObjects.HengyangshifangUniversity,2005[3]Wanjianhua,Menghui.TheApplicationofGISinCampusRealEstateManagement.People'sTrafficPress,200715 GIS在房产和土地信息管理中的应用TheApplicationofGISinCampusRealEstateManagementChengYaodongMengBinZhaoTingtingHanJinWangAin(SchoolofMathematics,Physics&SoftwareEngineering,LanzhouJiaotongUniversity,LanzhouGans730070,China;)Abstract:Houseproperties,landresourcesandtheirspatialdistributioncanbemanagedeffectivelyandaccuratelywiththehelpofGIStechnologyusedinvisualmanagementofcampusestateandlandinformation,whichprovidesatoolforassetsmanagementdepartmentstoperformfastandeffectivedecisionmakingandmanaging.Withthedesignofgeneralstructure,functions,anddatabaseasthebasis,theuseofGIScomponentstechnologytoembedManxintoVisualBasic6.0,andAccessasdatabasedeveloptool,acampusestatemanagementinformationsystemisdeveloped,whichincludesfunctionslikeentering,inquiry,modifying,statisticsandreportingofdata.Thesystemhasworkedwellpractically.Keyword:computerapplication;houseandlandinformationmanagement;GIS;MapXWiththerapiddevelopmentofGIStechnology,"Digitization"ofallwalksoflifeinChinahasmadegreatprogress,theNetworkmanagement'sdesireof"DigitalCity"and"DigitalChina"istobecomeareality.Duetotherapiddevelopmentofhighereducationandtheconstantexpansionoftheschool,Andtheschoolland,realestaterapidlyincreaseandchange.TheinconsistencyofGraphicinformationandattributeinformationandThemanagementoftheuniversityassetsmanagementdepartmentaboutmanagementtoolsandmanagementsoftwareandmanagementstylecannotadaptthemanagementneedsofthenewsituation.Inordertoadapttheneedsofthedevelopmentoftheinformationage,theestablishmentoftheUniversityPropertyandparcelmanagementinformationsystemisimperative.WithsoftwaredevelopmentabouttherealestateandparcelmanagementinformationsystemsofLanzhouJiaotongUniversity,weresearchfortheFunction,ForexamplethestorageofInformationdata,update,modify,query,statisticsandreportsaboutThecampusestateandland,BasedonvbandMapXcomponentanddatabasesoftwareAccess,whichplayasignificantroleandhaveaprofoundimpactfortheefficiencyofschoolsectormanagementandthelevelofinformationmanagement.Thesystemhasbeenusedinschoolsintelligencedepartmentandprovidedavisualizationplatformforcampusinformationmanagement.1ThepublicestatemanagementbesedonMapXandVb1.1athree-tierstructurecouldbeingdesignedusuallyinthedevelopmentplatformofComponentGIS.(1)Basiccomponents15 GIS在房产和土地信息管理中的应用Forspatialdatamanagement,toprovideabasisforinteractionandconnectwiththedatabasesystembyaflexibleway.(2)SeniorcommoncomponentsMadebytheunderlyingcomponentstructure,thedevelopmentprocessbecomesimpleforuserAboutcommonfunctions,ForexamplethecomponentsofdisplaytoolandselectToolsandeditingtoolsandattributebrowser.Cooperativecontrolmessagesareencapsulatedbetweenthem.theCommonfunctionsmakesecondarydevelopmenteasierafterComponentshavebeenpackaged[2].(3)IndustrycomponentsAbstractedindustryapplicationspecificalgorithms,fixedtothecomponent,acceleratethedevelopmentprocessbymoveforwardasinglestep.ForGPSapplications,NotonlytheneedofthemapdisplayandInformationinquiryandothertheGPSfunctions,butalsorequiresaspecificapplicationfunctionswhichbasedonGPSmonitoring,Suchasdynamictargetdisplay,targetlock,trackindicatorlights.AftertheGPSindustryapplicationfunctionalcomponentswhichareencapsulated,Legendofthedevelopmentworkcanbereducedtothetargetsetdisplay,thetrajectorydisplayofcolor,targetlockandthewayoftheaccepteddata.1.2DevelopmentapproachbasedonMapX(1)LayersMapXislayer-organizationmapwhichdividedacomputermapintomultipletransparentlaminatedlayersandeachlayerincludinganinformationoftheentiremap.wecancoordinatethehandlingoftherelationshipofthevariouslayersbycontrolingtheLayerscollectionthatmadeeditandmanageeasyer.collectionofmaplayerswascomposedbylayers,theoperationssuchasadding,deleting,changingmustpassacollectionoflayersinMapX.Theobjectineachmap,includingacollectionoflayersandlayerscollectionbasedonlayerobjects.throughtheLayerscollectionaccessmaplayers,throughtheLayerscollectionaccessmaplayers.MapXcontrolthemapbycontrolingcollectionoflayers.Tosetinthecampuselectronicmaplayers,suchastheadministrationbuilding,classroombuilding,laboratorybuilding,alibrary,apartmentsandfamilywings,greenspaces,campusattractions,playgrounds,roadsnodesroadlinesandboundariesoflayers.(2)DataBindingEachmaphasadatacollection,datacollectioncanattributedataandmapspatialdatalink.DataBindingtointroducetheMapXTheprocessofexternaldata,externaldatacanbeavarietyoftypesofdatabase,databindingelementsonthemapbrowsingdataorbasedonthesedatatocreateathematicmapisrendered.(3)CharacteristiccollectionsandthewaytofindInMapX,themapismadeupoflayersandlayersmadeupofmapfeatures.Usuallyeachlayerhasonetypeofcharacteristics.InMapX,allthecharacteristicsofalayerconstitutingafeatureset.Eachdiagramelementisafeatureoftheobject,bythepropertiesofthelayertolocategeographicfeatures,suchaslines,symbolsorregionalcharacteristics.Mapinfotableinordertobeabletousethis15 GIS在房产和土地信息管理中的应用method,youmustfindlayersthereisanindexfield.themethodofFindingthesurfacefeaturesineachlayer:ForEachlyRInMap1.LayersIflyR.Name="Chiefclassroombuilding"ThenSetds=Formmain.Map1.DataSets.Add(miDataSetLayer,lyR)Setftrs=lyR.Search("NAMElike""%"&buildname&"%""")(4)ThemodelstructureofMapXThebasicunitinMapXcomponentisasingleobjectandcollectioncollectionincludesobjects,isacombinationofmultipleobjects,eachobjectandcollectionhandlesmapafunction[3].MapXdefinesaclasssystem,whichcaneffectivelyorganizethegraphicelements,layersandattributedataobjects,mainlythefollowingfunctions:1)TodisplaythemapofMapInfoformat.MapXandMapInfoconsistenthavethesamedataformat.AndTab,.Gstandotherdocumentscanbeopeneddirectly.2)Togenerateandeditmapobjects.AlargenumberofdrawingtoolsencapsulatedinMapXwhichcangeneratepoints,lines,surfaces,andannotationelementsonitwithinFeatureFactoryobjectelementssymbolizedprovidesmethodsandallowstheusertocustomsymbols.3)Forthemap,zoomin,zoomout,roamingandfeatureselectionoperation.InMapX,ToolUsedeventandsettherelevantparameters,theaboveoperationcanberealizedonthemap.4)Layercontrol.MapXallowstheusertomanagetheelementsofhierarchicalandcreatetheelementsofthephysicallayerreally.thefollowingmethodofLayercontroling,loadinglayers:Map1.Layers.LayersDlgMap1.RefreshDialogTitle="loadinglayers".Filter="MapInfoTables(*.tab)|*.tab".DialogTitle="Loadacollectionoflayers".Filter="MapXGeoSet(*.gst)|*.gst"5)Createapropertysheet.MapXprovidesthedatainthedatabaseandMapInfomapassociatedmethod,giventhecorrespondingpropertyofthegeometricdata,inordertomeettheinformationneedsofthequery.UserscanselectFigureorSQLstatementstoaccessthepropertiesoftheelements.2Thesystemmodelandfunctiondesigned2.1ThedesigneofSystemModelTheoverallstructureofthesystemdesignbasedonuserneedsanalysis,includingmapdatamanagementsystem,systeminterface,systemfunctionality,datastoragemanagement,datadisplayanddatainputandoutput,thesystemarchitectureisshowninFigure1.15 GIS在房产和土地信息管理中的应用Figure1SystemArchitecture2.2ThedesigneofSystemfunctionThesystemisthetooloffunctionaldepartmentstocarryoutmanagementforthecampuspropertyandland.Ithastwopermissionsofadministratoranduser.Userscanquery,statisticsandreportoutputandotherbasicoperationsondata.managercandoallofoperations.Figure2Thesystemfunctionstructurechart2.3Thedatabasestructureanddatadictionary(1)Managementofuserinformationtable15 GIS在房产和土地信息管理中的应用Usermanagementtableisusedtostoretheusername,passwordandpermissions.(2)LandmanagementinformationtableLandmanagementtableisusedtostoretheadministratorwillinputthecampusparcelinformation,sothattheuserbygraphqueryparcelattributes,displayrelatedinformation.Landinformationgenerallyincludes2fields.Inadditiontofield,thereisthedateofissuance,thecertificatenumber,specifythenatureofthearea,location,dateofacquisition,,landarea(squaremeters),landarea(MU),amount,useunits,landsources,theuseandremark.(3)PersonalhousinginformationtablePersonalhousinginformationtableisusedtostoretheadministratorbyimportexceltableorbytheemployeehousinginformationentry,querytoassetmanagement,andknowledgeworkersindividualhousingandrelatedinformation,toavoidthetediouslaborinthepastthekindofinefficientreadingpapercardfile.Personalhousinginformationislarge,includingname,gender,unitname,birthyear,thehighestdegree,theUniversityoftime,time,timetoparticipateintheworkofretired,post,title,nameofspouse,thespouseunit,number,typeofhousing,constructionarea,usethearea,whiletheareaandthecompletiontimeofmorethan40kinds.(4)BuildinginformationBuildinginformationtableisusedtostorethepublichousesbytheinformationinputbythedialogmanager.Assetadministratorsuserelevantinformationandimagequeryfunctioncanquicklyqueryallkindsofpublichouses.therearethestructureofbuildings,thecardnumber,assetclassificationcode,thecertificatenumber,propertyuse,date,location,use,constructionarea,thecompletiondate(squaremeters),theamountofnotesandpictures,etc..(5)FloorinformationtableFloorinformationtableincludesbuildingname,floors,totalfloorarea,bathrooms,corridors,staircases,waterroom,powerdistributionroom,dutyroom,watertank,notesandCADmap,forassetmanagementfastqueryinformationandpicturesofeachlayerofeachbuilding.(6)RoominformationtableTheroominformationtableincludesbuildingname,floor,useunit,roomnumber,nameofroom,use,constructionarea,usethearea,powerdistributionroom,dutyroominformationandpictures,forassetmanagementfastqueryinformationandpicturesofeachroomofeachlayer.3Themainfunctionsofthesystemimplementation3.1InputandoutputofattributedataPublichousesbythemanagementinformationsystemismainlyusedfortheworkingpersonnelhousinginformation,publicinformation,informationquery,landstatistics,report。Itimprovesthefunctionaldepartmentsoftheworkefficiencyandmanagementlevel。Theinformationdatahasmanykinds,andinformationofInputislarge。Thesystemusestwoinputmethod:OnemethodistheEXCELformdataby15 GIS在房产和土地信息管理中的应用programsinthefieldofautomaticimportofACCESSdatabase。Thismethodavoidsalotofdataentryworks,andremovestheentryprocesserrors。Anothermethodistousethedialogbox,thefielddatainthetableshowninthedialogbox,intheeditbox,intuitiveandfriendlydataentry,add,modifyanddeleteoperations.Inthestatisticsoftheattributedata,notonlycandisplaydatainadialogbox,butalsocanformaexcelstatement,theoutputresults,reportedtotherelevantdepartments,improveworkefficiency,andprovidethebasisforthedecision-makingdepartmentsquickly.3.2InquiryfunctionRealizationofgraphicexchangeisthebiggestfeature。Thesystemprovidestwowaystoquery。Oneisqueryandbowsefromamaptoattribute,querythespecifiedobjectfromaplanargraphproperties。Anotheristhequerylocationfromapropertytomaplocation。Thenamesuchasbuildingquerythebuildingpositioninthemapbyobjectattributevalues,highlightingandamplification.3.3StatisticalreportformfunctionStatisticalsummaryfunctionsaredividedintoattack-defensestatisticsandstatisticalfunctionsofthetwosectorinhousing。Thepopulationwasdividedintohousingstatistics:prsonnelhousingstatistics,housingstatistics,whilestatistics.3.3OtherfunctionsThesystemalsoincludesaparcelinformationquery,mapdisplay,areaanddistancemeasurement,mapinformationquery,output,saveandprintetc..4ConclusionUsingVisualBasiclanguageandMapXdevelopmentenvironment,fromtheuseoftheadvantagesofcomponentdevelopment,shortenthesystemdevelopmenttime,reducedevelopmentdifficulty,butalsogreatlyimprovestheinformationmanagementsystemofthecapabilityandefficiency.Thesystemhasthefollowingadvantages:(1)Therealizationoftheexistingdataintothesystemfunctionandtherelationshipbetweenthemapandtheattributedata.(2)Thepropertiesandthebidirectionalquerygraphformedbynaturetomakeupforthelackofspace,theMISsystemdata.(3)Therealizationofpublicinformation,landinformationandpersonnelhousinginformationsuchasreal-timeupdate,statisticsandreports.Thesoftwaredevelopmenttechnologycanalsobeusedforundergroundpipenetworkandtrafficinformationsystem,andhasthecertainreferencevaluetothesimilarsoftwaredevelopment.Thefollow-upworkcancommencefromthe3Dvisualization,spatialinformationquery.15 GIS在房产和土地信息管理中的应用References[1]Linxiaosong.thedesignanddevelopmentofCampusRealEstatebasedonGIS[J].ChongqingJiaotongUniversity,2004[2]Zhengwenwu,Liuyong.hedesignanddevelopmentofCampusRealEstatebasedonMapObjects.HengyangshifangUniversity,2005[3]Wanjianhua,Menghui.TheApplicationofGISinCampusRealEstateManagement.People'sTrafficPress,200715

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。
关闭