MapServer教程:MapFile配置入门
首先介绍一下本教程中使用的第一个Mapfile (example1-1.map):
# 有评注的地图文件(排序)
# 由Pericles S. Nacionales创建MapServer 教程
# 20050408
#
# MapServer地图文件使用英镑符号(#)表示一行MapServer的开始
# 注释--需要注释的每一行必须以“#”开始。
# 地图文件以地图的关键词开始来表示地图对象的开始。
# 整个的地图文件是地图对象。在地图和地图文件之间附上的是关键词/有价值的对和其它的对象。
MAP
IMAGETYPE PNG
EXTENT
-
97.238976
41.619778
-
82.122902
49.385620
SIZE
400
300
SHAPEPATH
"../data"
IMAGECOLOR
255
255
255
# 图层对象在地图对象之下定义。在你展示一个
# 地图之前,你至少需要在你的地图文件中定义一个图层...你可以
# 定义尽可能多的图层尽管在MapServer来源中一个限制被典型地硬编码为map.h。
# 默认的限制被设置为100.你最好
# 必须有一个非常专业的应用来在你的应用中
# 应用100多个图层。
# 开始图层定义
LAYER
# States polygon layer begins here
NAME states
DATA states_ugl
STATUS OFF
TYPE
POLYGON
# 类对象与图层对象一起定义。你可以定义和
# 你需要的一样多的类(对图层有限制,但是
# 在一个正常的地图上定义多于10个是没有意义的。
# 但是有时候你不得不这样做。)
CLASS
NAME
"The Upper Great Lakes States"
# 在一个类中有样式,正如在一个图层中有类别,
# 就像在一个地图中有图层。你可以在一个类
# 中定义不同的样式就像你可以在一个图层中
# 定义不同的类和在一个地图中定义不同的图层。
STYLE
COLOR
232
232
232
OUTLINECOLOR
32
32
32
END
END
END
# States polygon layer ends here
# End of LAYER DEFINITIONS -------------------------------
END
# 所有的地图文件必须结束正
我们会介绍一下MapFile的基本语法。后面使用的Mapfile,不会给出具体的说明。
这个MapFile是地图服务器的基本配置机制。这是由“对象”和每个对象都可以使用关 键字
或其他对象。它有一个分层结构,例如,一些物体落在在其他的对象……这个层次上的地图对象,
所有其他对象属于它。这个例子显示了一个非常简单的层次结构的 对象。当你通过每个例子时,
这些分层树的复杂性会增加。
有关MapFile的几个简单的说明:我们定义中的每个对象映射文件对象名称,我们用“END”
关闭它并且我们用英镑符号(#)写评注。
让我们看一下MapFile的主要结构。其结构看起来像这样:
MAP
|
-
LAYER
|
-
CLASS
|
-
STYLE
让我们来看看在MAP对象内的关键字(参数):
MAP
每一个映射文件开始于MAP对象 – 整个映射文件是MAP对象.
IMAGETYPE
IMAGETYPE的关键字用于定义那些 MapServer的CGI程序应该用于输出图像格式。
在这种情况下,我们是使用索引彩色PNG(类似GIF)。这可能是G IF,如果我们编译
GD库支持GIF,WBMP,JPEG。我们也可以指定编译对他们的支持的其他输出选项(PDF,
SWF的GeoTIFF),并指定他们为OUTP UTFORMAT对象。OUTPUTFORMAT超出本教
程的范围,但通过阅读主要MapServer的网站的资料你可以找到更多。
EXTENT
此参数指定我们的地图输出范围的边界 – 我们最初的地图边界。范围值的格式为:
左下X 左下Y 右上X 右上Y
用空格分隔每个值。这需要数据的单位相同,或者如果指定一个不同的输出投影,
在相同的单位输出投影。
在这个例子中,我们的数据是地理投影,所以单位是十进制。您可以使用实用程序“ogrinfo”,
这是GDAL/ OGR库包的一部分,得到一个特定的shape文件(或其他支持的矢量格式)的范围。
这里是我用这个例子范围的命令:
ogrinfo
-
al
-
so states_ugl.shp
返回下面的输出:
INFO:
Open
of `states_ugl.shp'
using driver `ESRI Shapefile' successful.
Layer name: states_ugl
Geometry: Polygon
Feature Count:
204
Extent: (
-
97.238976
,
41.619778
)
-
(
-
82.122902
,
49.385620
)
Layer SRS WKT:
(unknown)
AREA: Real (
12.3
)
PERIMETER: Real (
12.3
)
STATESP020: Real (
11.0
)
STATE: String (
20.0
)
STATE_FIPS: String (
2.0
)
CLASS: String (
5.0
)
您还可以使用ArcView或其他开源GIS软件包 – QGIS、Thuban等 – 随意改变值的范围
更好地了解它如何改变你的地图。
SIZE
这是大小的图像(电子地图),地图服务器生成,以像素为单位。因此,我们的地图是
400像素宽,300像素高。再次,改变你的中心的内容,看看它是如何影响你的地图.
SHAPEPATH
这是数据层的路径。您可以提供绝对路径(即,“/ ms4w/apps/tutorial/data”
或“C:/ms4w/apps/tutorial/data”) 或相对路径到您的映射文件的位置(在这个例子
中,你会使用”../data”)。此路径没有通过网络访问,并且可能不应该,除非你想任何人都
可以下载你的原始数据。它 有没有直接这样做的WEB不甚至认为这里的网址 – 只要确保用户
运行Web服务器(通常是”nobody” 或者 “apache”)可以读取的SHAPEPATH中的数据。
IMAGECOLOR
这是您的地图的背景色。值由RGB值所以255红,255绿,和255B,这会导致在白色背景中。
来吧,一起玩这个值.
现在,让我们来看看层对象参数:
LAYER
标志着一个层内的地图对象。只要你愿意,您可以指定为多层次,虽然默认情况下你是
有限的100。要改变这种限制,你将不得不编辑map.h头文件(从古到今树),并重新编译
MapServer
NAME
这是一个层的标识符。 MapServer的使用这个名字进行切换层的开启和关闭。它不会在这
个例子中,我们有层状态设置为默认值。在以后,我们将回到这个的例子。
DATA
数据的名称(在这种情况下,shape文件)。
请读取的 MapServer的矢量数据指南了解更多有关如何访问MapServer的矢量数据。
MapServer的支持矢量数据格式ESRI的shape文件使用OGR库(的GDAL软件包的一部分)。
请访问GDAL项目网站和阅读http://www.gdal.org/ogr/ogr_formats.html了解更多OGR支持的各种格式。
TYPE
这是什么类型的数据?如果它是一个矢量数据,您可以指定无论它是一个多边形,线(你用
你的数据线,即使技术上折线),
或者一个点。您也可以指定栅格或注释数据。在这里 ,我们要显示多边形。
STATUS
层被基于它们的状态打开或关闭。默认总是打开。 ON或OFF的工作的一部分,
通过图层名称查询字符串。
Let’s look at the CLASS object parameters:看一下CLASS的参数:
CLASS
标志着层内对象的Class对象。你可以指定层内尽可能多的类,虽然默认被限制为50。
你必须重新编译MapServer来改变默认值。
NAME
这个类的描述性识别。层对象可以有多个类,就像地图对象可以有多个层次。传说中的标签,
以便使所使用的类名的MapServer类命名时,一定要使用适当的描述性名称 。稍后在本教程中,
我们将谈到。
最后,让我们来看看在STYLE对象参数:
STYLE
注意STYLE对象的开始。您可以在一个类定义多个的风格 – 当你想叠加在另一个风格,这是有用的。
COLOR
这是多边形的填充颜色。案件类型为直线,这是线的颜色。这些数值是RGB格式。
OUTLINECOLOR
这是多边形的边框颜色。这些数值是在RGB格式。 MapServer在默认情况下,不绘制多边形轮廓,
因此,如果你想看到多边形边界,你将要定义OUTLINECOLOR。
转载请注明出处。GIS帝国网站报道中出现的商标及图像版权属于其合法持有人,只供传递信息之用,非商务用途。
We’re a group of volunteers and opening a new scheme in our community. Your website offered us with valuable info to work on. You’ve done a formidable job and our whole community will be grateful to you.
Thanks for the thoughts you are sharing on this website. Another thing I would really like to say is the fact that getting hold of copies of your credit file in order to check accuracy of the detail may be the first motion you have to undertake in credit improvement. You are looking to thoroughly clean your credit history from harmful details mistakes that spoil your credit score.
I have realized that car insurance organizations know the vehicles which are prone to accidents and other risks. Additionally, these people know what type of cars are inclined to higher risk as well as the higher risk they’ve got the higher a premium price. Understanding the basic basics connected with car insurance will let you choose the right form of insurance policy that could take care of your preferences in case you become involved in any accident. Many thanks sharing the ideas on your own blog.
Your blog does not display properly on my iphone 3gs – you may wanna try and fix that
Профессиональный сервисный центр по ремонту бытовой техники с выездом на дом.
Мы предлагаем:ремонт бытовой техники в мск
Наши мастера оперативно устранят неисправности вашего устройства в сервисе или с выездом на дом!
Hi there, I found your site via Google while searching for a related topic, your web site came up, it looks good. I have bookmarked it in my google bookmarks.
What a well-written and imformative blog! I really appreciate the thorough information you’ve shared.
It’s difficult to cone across this kind of cloear and authentic information particularly when itt comes to real estate topics like
Land for Sale in Namakkal. Your information stands ouut because of its
acccuracy and local relevance, making it a valuable source
for prospective buyers as well aas investors. Keep oing with the good work.
Your efforts have helped individuals make better choices.
I’ll be sure to visit your site often to read more information, particularly about Land for Sale Namakkal.
I wish you continued success and looking forward to seeing your bloog posts continue
tto be amazing in thhe coming months. Your work is amazing.
Keep your momentum up!
Read More About Land for Sale in Namakkal
Great work on this informative blog! I really appreciate the work you’ve putt
into sharing the most valuable knowledge. Your waay of descriubing potential opportunities and possibilities in the real
estate market particularly in Salem, is both inspiring andd
helpful for readers such as mee who are considering
the possibilities of investing inn real estate.
The content you provide is simple, engaging, and really highlights the benefits of considering
plots for sale inn Salem. Keep it up! – ylur blog is a great
source for those interested in making informed real estate choices.
I lookk forward to the next posts in the coming months.
Keep sharing your knowledge and helping others grow.
There’s a new faithful reader here!
Readd More About Plots for Sale in Salem
Wow, incredible blog structure! How long have you been running a blog for? you made blogging glance easy. The full look of your web site is wonderful, as smartly as the content!
Fantastic tool! I’ve been looking for a keyword counter that provides accurate and quicck results, and this one works perfectly.
It’s extremely useful for blogger, content creators aand SEO professionals who need to keep track of keyword density
quickly. Thee user-friendly interface and instant resullts
maske optimizing yokur content easy. I strongly recommend
this software to anyone wanting to boost your SEO strategy.
Thank you for making this a useful resource! I look flrward to seeing additional
features in the future.
Check this free Tool : keyword counter
Fantastic article! high-pressure water pumps are vital foor numerous industrial aand commercial application, and your choice
from high-pressure punps looks top-notch. I am impressed by
the thorough information on vertical multisttage centrifugal pump as well as Horizontal multistage
centrifugal pumps, as they’re essential for effective water transfer.
Your experience inn CNP pumps and centrifugal high-pressure pumps is
commendable. It’s wonderful to find a company providing high-quality centrifugal pumps for
diverse demands. I look forward to learning the producgs you offer and new developments in thiss area.Keep it up!
Read more about :
It’s a great tool! It is a great resource! printable habit tracker
can be a straightforward but effective tool for building the habit of being consistent annd
remain engaged. I like how your tracking tools are nicely organized and simple tto
use. They are perfect for creating and reaching
individual targets. The visual tracking of habits can make an enormous
distinction iin staying on track. We appreciate you for providing these ussful templates!
We look forward too examining further oof your offerings.
Additionally, I wrolte a piece about the process of habit-forming and I would like to hear from you about your experiences.
You are doing a fantastic job!.
Read more about : Printable habit tracker
Excelllent resource! Dosing pumps are essential in exact chemijcal dosing for various industries, and your
knowledge in this area is exceptional. The range includes chemical
dosing pumps to mertering pumps and Milton Roy dosing macnines Your solution appear to cover a wide range of applications.
I found your information on washing pumps, dishwasher pumps,
and chlorination dosing pumps highly usefu forr both industrial as well
as domestic requirements. The range you offer in inecta pump appears to be promising for the accuracy and efficacy in chemical dosing.
I am looking forward to hearing moree about your innovations
in the field!
Read more about : injecta pumps
Great resource! Locating trustworthy QuickBooks-related training
in Bangalore is challenging, and this platform provides
comprehensive instruction for beginnr and experienced users alike.
Understanding QuickBooks efficently is crucial for effectivelly
maaging your finances and Iam impressed by your structured
methhod of instruction. If anyoe is looking for expert-led QuickBooks classes
in Bangalore it is definitely worth checking out. Looking
forward to ore insights from your team!
Read more about : Quickbooks Training in Bangalore
Excellent insight! Concentrated Wisdom [ “https://concentratedwisdom.com/ ]
truly offers an entirely new perspective on personal growth.
I love how your material is a deep dive into self-development
and practical wisdom. Podcasts like yours make it much easier to learn valuable lessons and apply them in daily life.
If you’re looking for an Podcast for Personal Growth This is a must-follow!
Thank you for your amazing efforts. I’m looking at the next episode!
Also, I recently explored similar topics on my blog, and
would love to hear what you think. We can continue to inspire each other!
Read more about : Podcast for Personal Growth
This blog article offers the most fascinating insight into the intricate world that is wastewsater treatment.
It’s crucial too know the intricate issues that are involved in the management
and improvement of our water resources. Discussions about contemporary wastewater treatment plants as
well as the essential role played by wastewater treatment companies is a
testament to the comnitment of these companies to provide
an effectiive wastewater soluytion as well as a comprehensive wastewater treatment solution. A fcus on wastewater purification is particular
pertinent in the current climmate of environmental degradation.
I also appreciate the mention of different approaches, such
as advanced systems like sewage treatment plants and more simple, yet efficient, method such aas sewage treatment.
It’s fascinating to know more about johkasou system and its applications, alongside the importance of both domestic
sewage trwatment plant options for hoes and residential areas as well as robust industrial wastewater trteatment and industrial wastewater treatment plants for more extensive requirements.
Thhis is a truly important subject, and this blog sheds valuable light on it.
Check This Article aout : wastewater treatment solution
I think other web-site proprietors should take this website as an model, very clean and great user friendly style and design, let alone the content. You are an expert in this topic!
You could certainly see your skills within the work you write. The arena hopes for more passionate writers like you who aren’t afraid to mention how they believe. All the time go after your heart.
Many thanks for sharing most of these wonderful threads. In addition, the perfect travel and medical insurance approach can often eliminate those concerns that come with vacationing abroad. Some sort of medical emergency can soon become costly and that’s absolute to quickly decide to put a financial load on the family’s finances. Putting in place the excellent travel insurance offer prior to leaving is definitely worth the time and effort. Thank you
When I initially commented I clicked the “Notify me when new comments are added” checkbox and now each time a comment is added I get three emails with the same comment. Is there any way you can remove me from that service? Cheers!
Spot on with this write-up, I truly suppose this web site wants far more consideration. I?ll probably be once more to read way more, thanks for that info.
Hi! This is my 1st comment here so I just wanted to give a quick shout out and tell you I genuinely enjoy reading your blog posts. Can you recommend any other blogs/websites/forums that deal with the same topics? Appreciate it!
Terrific post but I was wanting to know if you could write a litte more on this subject? I’d be very thankful if you could elaborate a little bit more. Bless you!
Thanks for your helpful article. Other thing is that mesothelioma cancer is generally the result of the breathing of dust from asbestos fiber, which is a positivelly dangerous material. Its commonly viewed among staff in the construction industry who definitely have long exposure to asbestos. It could be caused by residing in asbestos insulated buildings for some time of time, Genetic makeup plays a huge role, and some persons are more vulnerable for the risk when compared with others.
Thanks , I’ve recently been looking for info about this topic for a long time and yours is the greatest I’ve discovered so far. However, what concerning the conclusion? Are you positive in regards to the supply?
I’m not that much of a online reader to be honest but your blogs really nice, keep it up! I’ll go ahead and bookmark your website to come back in the future. Cheers
WONDERFUL Post.thanks for share..extra wait .. ?
Yet another issue is that video games are normally serious naturally with the most important focus on learning rather than fun. Although, we have an entertainment facet to keep your young ones engaged, every game is normally designed to work on a specific expertise or programs, such as mathmatical or technology. Thanks for your write-up.
Hi there, You’ve performed a great job. I?ll certainly digg it and personally recommend to my friends. I am confident they will be benefited from this site.
Thank you, I have recently been searching for info about this topic for ages and yours is the greatest I’ve came upon till now. However, what concerning the bottom line? Are you sure in regards to the source?
Thanks for your submission. I also think that laptop computers have grown to be more and more popular lately, and now will often be the only type of computer utilised in a household. Simply because at the same time actually becoming more and more cost-effective, their processing power keeps growing to the point where they are as powerful as desktop out of just a few in years past.
Thanks for these guidelines. One thing I should also believe is credit cards offering a 0 rate often attract consumers with zero interest rate, instant endorsement and easy on the net balance transfers, nonetheless beware of the most recognized factor that can void your own 0 easy neighborhood annual percentage rate and as well as throw anybody out into the very poor house rapidly.
Just want to say your article is as astounding. The clarity in your post is just spectacular and i can assume you’re an expert on this subject. Fine with your permission allow me to grab your RSS feed to keep updated with forthcoming post. Thanks a million and please continue the rewarding work.
Music started playing as soon as I opened up this internet site, so irritating!
I don?t even know the way I ended up right here, however I assumed this submit used to be good. I don’t recognize who you are however definitely you are going to a famous blogger in case you aren’t already 😉 Cheers!
You actually make it seem so easy with your presentation but I find this topic to be really something that I think I would never understand. It seems too complex and very broad for me. I’m looking forward for your next post, I?ll try to get the hang of it!
I have realized that online education is getting favorite because obtaining your degree online has turned into a popular alternative for many people. A huge number of people have definitely not had an opportunity to attend a regular college or university although seek the raised earning potential and a better job that a Bachelor Degree gives. Still people might have a college degree in one training but would like to pursue a thing they now have an interest in.
Hiya, I am really glad I’ve found this information. Today bloggers publish only about gossips and web and this is actually irritating. A good website with exciting content, that’s what I need. Thank you for keeping this website, I’ll be visiting it. Do you do newsletters? Can not find it.
Hi there! I know this is somewhat off topic but I was wondering if you knew where I could get a captcha plugin for my comment form? I’m using the same blog platform as yours and I’m having difficulty finding one? Thanks a lot!
I will immediately grab your rss feed as I can’t find your e-mail subscription link or e-newsletter service. Do you’ve any? Please let me know so that I could subscribe. Thanks.
An impressive share, I simply given this onto a colleague who was doing a bit analysis on this. And he actually bought me breakfast as a result of I discovered it for him.. smile. So let me reword that: Thnx for the deal with! But yeah Thnkx for spending the time to discuss this, I really feel strongly about it and love reading extra on this topic. If potential, as you change into experience, would you thoughts updating your blog with more particulars? It’s extremely useful for me. Big thumb up for this blog post!
Do you mind if I quote a couple of your posts as long as I provide credit and sources back to your site? My website is in the exact same niche as yours and my users would definitely benefit from a lot of the information you provide here. Please let me know if this okay with you. Appreciate it!
Hi there, i read your blog occasionally and i own a similar one and i was just wondering if you get a lot of spam responses? If so how do you prevent it, any plugin or anything you can suggest? I get so much lately it’s driving me crazy so any assistance is very much appreciated.
Attractive section of content. I just stumbled upon your web site and in accession capital to assert that I get actually enjoyed account your blog posts. Anyway I?ll be subscribing to your feeds and even I achievement you access consistently quickly.
Valuable info. Lucky me I found your site by accident, and I am shocked why this accident didn’t happened earlier! I bookmarked it.
I am now not positive where you’re getting your information, however good topic. I must spend a while studying more or figuring out more. Thanks for wonderful information I used to be looking for this info for my mission.
Hi there, You have done a fantastic job. I?ll certainly digg it and personally suggest to my friends. I’m confident they will be benefited from this website.
My brother recommended I may like this blog. He was totally right. This publish truly made my day. You can not believe simply how so much time I had spent for this info! Thanks!
I found your blog website on google and verify a couple of of your early posts. Proceed to keep up the excellent operate. I simply additional up your RSS feed to my MSN Information Reader. Looking for forward to reading more from you in a while!?