-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdata.lua
116 lines (104 loc) · 2.63 KB
/
data.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
data{
file = "partofbrazil.shp",
attributes = {
name = "Name of the state."
},
summary = "A shapefile describing the some Brazilian states.",
source = "TerraME team"
}
data{
file = "farms.shp",
attributes = {id = "Unique identifier."},
summary = "A shapefile describing the farms.",
source = "TerraME team"
}
data{
file = "communities.shp",
attributes = {
LOCALIDADE = "Name of the community.",
MUNICIPIO = "Municipality the community belongs.",
},
summary = "A shapefile describing some communities in Santarem, Para, Brazil.",
source = "TerraME team"
}
data{
file = "roads.shp",
attributes = {
STATUS = "Status of the road: 'paved' or 'nonpaved'.",
},
summary = "Some roads of Santarem, Para state, Brazil.",
source = "TerraME team"
}
directory{
name = "error",
summary = "Some corrupted files for internal tests.",
source = "TerraME team"
}
directory{
name = "test",
summary = "Some files for internal tests.",
source = "TerraME team"
}
data{
file = "area.gpm",
summary = "GPM file created by example area.lua.",
source = "TerraME team"
}
data{
file = "border.gal",
summary = "GAL file created by example border.lua.",
source = "TerraME team"
}
data{
file = "border.gwt",
summary = "GWT file created by example border.lua.",
source = "TerraME team"
}
data{
file = "border.gpm",
summary = "GPM file created by example border.lua.",
source = "TerraME team"
}
data{
file = "br_cs_5880_25x25km.shp",
summary = "A cellular space created from Brazil territory.",
source = "TerraME team"
}
data{
file = "br_ports_5880.shp",
attributes = {
COD_IBGE = "IBGE code identifier.",
NOME_UF = "Federative unit name.",
COD_UF = "Federative unit code identifier.",
NOME_MUNI = "Port municipality.",
COD_MESO = "Region code identifier.",
NOMEMESO = "Region name.",
COD_MICRO = "Port city.",
UF = "Federative unit abbreviation.",
NOME_MICRO = "Port city name.",
SITUACAOP = "Port status.",
ADM = "Port administration.",
TIPOCARGA = "Type of cargo.",
EMPRESA = "Port administration company.",
OBS = "Status note.",
CODCENTRAN = "Unknow identifier.",
objet_id_5 = "Unknow identifier.",
},
summary = "A shapefile with some main sea ports of Brazil.",
source = "TerraME team"
}
data{
file = "br_roads_5880.shp",
attributes = {
OBJECTID_1 = "Unknow identifier.",
OBJECTID = "Unknow identifier.",
RODOVIA = "Road name.",
EXTENSAO = "Road extension.",
REVESTIMEN = "Road status.",
JURISDICAO = "Road jurisdiction.",
PISTA = "Road lane status.",
custo_ajus = "Road cost.",
},
summary = "A shapefile with Brazil main roads describing the transportation cost peer road stretch.",
source = "TerraME team"
}