forked from StartBootstrap/startbootstrap-full-width-pics
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathASPmap.html
More file actions
229 lines (206 loc) · 53.8 KB
/
ASPmap.html
File metadata and controls
229 lines (206 loc) · 53.8 KB
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>Kepler.gl embedded map</title>
<!--Uber Font-->
<link rel="stylesheet" href="https://d1a3f4spazzrp4.cloudfront.net/kepler.gl/uber-fonts/4.0.0/superfine.css">
<!--MapBox css-->
<link href="https://api.tiles.mapbox.com/mapbox-gl-js/v1.1.1/mapbox-gl.css" rel="stylesheet">
<!-— facebook open graph tags -->
<meta property="og:url" content="http://kepler.gl/" />
<meta property="og:title" content="Large-scale WebGL-powered Geospatial Data Visualization Tool" />
<meta property="og:description" content="Kepler.gl is a powerful web-based geospatial data analysis tool. Built on a high performance rendering engine and designed for large-scale data sets." />
<meta property="og:site_name" content="kepler.gl" />
<meta property="og:image" content="https://d1a3f4spazzrp4.cloudfront.net/kepler.gl/kepler.gl-meta-tag.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="800" />
<meta property="og:image:height" content="800" />
<!-— twitter card tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@uber">
<meta name="twitter:creator" content="@uber">
<meta name="twitter:title" content="Large-scale WebGL-powered Geospatial Data Visualization Tool">
<meta name="twitter:description" content="Kepler.gl is a powerful web-based geospatial data analysis tool. Built on a high performance rendering engine and designed for large-scale data sets.">
<meta name="twitter:image" content="https://d1a3f4spazzrp4.cloudfront.net/kepler.gl/kepler.gl-meta-tag.png" />
<!-- Load React/Redux -->
<script src="https://unpkg.com/react@16.8.4/umd/react.production.min.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@16.8.4/umd/react-dom.production.min.js" crossorigin></script>
<script src="https://unpkg.com/redux@3.7.2/dist/redux.js" crossorigin></script>
<script src="https://unpkg.com/react-redux@7.1.3/dist/react-redux.min.js" crossorigin></script>
<script src="https://unpkg.com/styled-components@4.1.3/dist/styled-components.min.js" crossorigin></script>
<!-- Load Kepler.gl -->
<script src="https://unpkg.com/kepler.gl@3.0.0-alpha.1/umd/keplergl.min.js" crossorigin></script>
<style type="text/css">
body {margin: 0; padding: 0; overflow: hidden;}
</style>
<!--MapBox token-->
<script>
/**
* Provide your MapBox Token
**/
const MAPBOX_TOKEN = ' pk.eyJ1IjoidXNsZGgtcmVjb3ZlcnkiLCJhIjoiY2xwOHdoYW4zMDNqbDJxb2Zncm1tcTV5ciJ9.L-vzw_YyxLgqKDD1waCBQA';
const WARNING_MESSAGE = 'Please Provide a Mapbox Token in order to use Kepler.gl. Edit this file and fill out MAPBOX_TOKEN with your access key';
</script>
<!-- GA: Delete this as you wish, However to pat ourselves on the back, we only track anonymous pageview to understand how many people are using kepler.gl. -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-64694404-19', {
'storage': 'none',
'clientId': localStorage.getItem('ga:clientId')
});
ga(function(tracker) {
localStorage.setItem('ga:clientId', tracker.get('clientId'));
});
ga('set', 'checkProtocolTask', null); // Disable file protocol checking.
ga('set', 'checkStorageTask', null); // Disable cookie storage checking.
ga('set', 'historyImportTask', null); // Disable history checking (requires reading from cookies).
ga('set', 'page', 'keplergl-html');
ga('send', 'pageview');
</script>
</head>
<body>
<!-- We will put our React component inside this div. -->
<div id="app">
<!-- Kepler.gl map will be placed here-->
</div>
<!-- Load our React component. -->
<script>
/* Validate Mapbox Token */
if ((MAPBOX_TOKEN || '') === '' || MAPBOX_TOKEN === 'PROVIDE_MAPBOX_TOKEN') {
alert(WARNING_MESSAGE);
}
/** STORE **/
const reducers = (function createReducers(redux, keplerGl) {
return redux.combineReducers({
// mount keplerGl reducer
keplerGl: keplerGl.keplerGlReducer.initialState({
uiState: {
readOnly: true,
currentModal: null
}
})
});
}(Redux, KeplerGl));
const middleWares = (function createMiddlewares(keplerGl) {
return keplerGl.enhanceReduxMiddleware([
// Add other middlewares here
]);
}(KeplerGl));
const enhancers = (function craeteEnhancers(redux, middles) {
return redux.applyMiddleware(...middles);
}(Redux, middleWares));
const store = (function createStore(redux, enhancers) {
const initialState = {};
return redux.createStore(
reducers,
initialState,
redux.compose(enhancers)
);
}(Redux, enhancers));
/** END STORE **/
/** COMPONENTS **/
var KeplerElement = (function makeKeplerElement(react, keplerGl, mapboxToken) {
var LogoSvg = function LogoSvg() {
return react.createElement(
"div",
{ className: "logo-container", style: {position: 'fixed', zIndex: 10000, padding: '4px'} },
react.createElement(
"svg",
{
className: "kepler_gl__logo",
width: "107px",
height: "21px",
viewBox: "0 0 124 24"
},
react.createElement(
"g",
{ transform: "translate(13.500000, 13.500000) rotate(45.000000) translate(-13.500000, -13.500000) translate(4.000000, 4.000000)" },
react.createElement("rect", { x: "0", y: "6", transform: "matrix(2.535181e-06 1 -1 2.535181e-06 18.1107 6.0369)", fill: "#535C6C", width: "12.1", height: "12.1" }),
react.createElement("rect", { x: "6", y: "0", transform: "matrix(2.535182e-06 1 -1 2.535182e-06 18.1107 -6.0369)", fill:"#1FBAD6", width: "12.1", height: "12.1" })
),
react.createElement(
"g",
{},
react.createElement("path", { fill:"#1FBAD6", d: "M39,8.7h2.2l-2.8,4.2l2.9,5.1H39l-2.4-4.2h-1.3V18h-2V5l2-0.1v7.3h1.3L39,8.7z" }),
react.createElement("path", { fill:"#1FBAD6", d: "M42.4,13.3c0-1.5,0.4-2.7,1.1-3.5s1.8-1.2,3.1-1.2c1.3,0,2.2,0.4,2.8,1.1c0.6,0.7,0.9,1.8,0.9,3.3 c0,0.4,0,0.8,0,1.1h-5.8c0,1.6,0.8,2.4,2.4,2.4c1,0,2-0.2,2.9-0.6l0.2,1.7c-0.4,0.2-0.9,0.4-1.4,0.5s-1.1,0.2-1.7,0.2 c-1.5,0-2.6-0.4-3.3-1.2C42.8,16.1,42.4,14.9,42.4,13.3z M46.6,10.1c-0.7,0-1.2,0.2-1.5,0.5c-0.4,0.4-0.6,0.9-0.6,1.7h4 c0-0.8-0.2-1.4-0.5-1.7S47.2,10.1,46.6,10.1z" }),
react.createElement("path", { fill:"#1FBAD6", d: "M57.1,18.2c-1,0-1.8-0.3-2.3-0.9l0,0l0,1.3v2.5h-2V8.7h1.5l0.3,0.9h0c0.3-0.3,0.7-0.6,1.2-0.7 c0.4-0.2,0.9-0.3,1.4-0.3c1.2,0,2.1,0.4,2.7,1.1c0.6,0.7,0.9,2,0.9,3.7c0,1.6-0.3,2.8-1,3.7C59.2,17.8,58.3,18.2,57.1,18.2z M56.7,10.3c-0.4,0-0.8,0.1-1.1,0.2c-0.3,0.2-0.6,0.4-0.8,0.7v4.3c0.2,0.3,0.4,0.5,0.7,0.7c0.3,0.2,0.7,0.3,1.1,0.3 c0.7,0,1.2-0.2,1.6-0.7c0.4-0.5,0.5-1.3,0.5-2.5c0-0.8-0.1-1.4-0.2-1.8s-0.4-0.7-0.7-0.9C57.6,10.4,57.2,10.3,56.7,10.3z" }),
react.createElement("path", { fill:"#1FBAD6", d: "M63.2,16V5l2-0.1v10.8c0,0.3,0.1,0.5,0.2,0.6c0.1,0.1,0.3,0.2,0.6,0.2c0.3,0,0.6,0,0.9-0.1V18 c-0.4,0.1-1,0.2-1.6,0.2c-0.8,0-1.3-0.2-1.7-0.5S63.2,16.8,63.2,16z" }),
react.createElement("path", { fill:"#1FBAD6", d: "M68.2,13.3c0-1.5,0.4-2.7,1.1-3.5c0.7-0.8,1.8-1.2,3.1-1.2c1.3,0,2.2,0.4,2.8,1.1c0.6,0.7,0.9,1.8,0.9,3.3 c0,0.4,0,0.8,0,1.1h-5.8c0,1.6,0.8,2.4,2.4,2.4c1,0,2-0.2,2.9-0.6l0.2,1.7c-0.4,0.2-0.9,0.4-1.4,0.5s-1.1,0.2-1.7,0.2 c-1.5,0-2.6-0.4-3.3-1.2C68.6,16.1,68.2,14.9,68.2,13.3z M72.4,10.1c-0.7,0-1.2,0.2-1.5,0.5c-0.4,0.4-0.6,0.9-0.6,1.7h4 c0-0.8-0.2-1.4-0.5-1.7S73,10.1,72.4,10.1z" }),
react.createElement("path", { fill:"#1FBAD6", d: "M80.2,8.7l0.1,1.7h0c0.3-0.6,0.7-1.1,1.1-1.4c0.4-0.3,1-0.5,1.6-0.5c0.4,0,0.7,0,1,0.1l-0.1,2 c-0.3-0.1-0.7-0.2-1-0.2c-0.7,0-1.3,0.3-1.7,0.8c-0.4,0.5-0.7,1.2-0.7,2.1V18h-2V8.7H80.2z" }),
react.createElement("path", { fill:"#1FBAD6", d: "M83.8,17c0-0.8,0.4-1.2,1.2-1.2c0.8,0,1.2,0.4,1.2,1.2c0,0.8-0.4,1.1-1.2,1.1C84.2,18.2,83.8,17.8,83.8,17z" }),
react.createElement("path", { fill:"#1FBAD6", d: "M88.5,18.7c0-0.8,0.4-1.4,1.2-1.8c-0.6-0.3-0.9-0.8-0.9-1.5c0-0.7,0.4-1.2,1.1-1.6c-0.3-0.3-0.6-0.6-0.7-0.9 c-0.2-0.4-0.2-0.8-0.2-1.3c0-1,0.3-1.8,0.9-2.3c0.6-0.5,1.6-0.8,2.8-0.8c0.5,0,1,0,1.4,0.1c0.4,0.1,0.8,0.2,1.1,0.4l2.4-0.2v1.5 h-1.5c0.2,0.4,0.2,0.8,0.2,1.3c0,1-0.3,1.7-0.9,2.2s-1.5,0.8-2.7,0.8c-0.7,0-1.2-0.1-1.6-0.2c-0.1,0.1-0.2,0.2-0.3,0.3 c-0.1,0.1-0.1,0.2-0.1,0.4c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.2,0.6,0.2l2.7,0.2c1,0.1,1.7,0.3,2.2,0.6c0.5,0.3,0.8,0.9,0.8,1.7 c0,0.6-0.2,1.1-0.5,1.5c-0.4,0.4-0.9,0.8-1.5,1c-0.7,0.2-1.5,0.4-2.4,0.4c-1.3,0-2.3-0.2-3-0.6C88.8,20.1,88.5,19.5,88.5,18.7z M95.1,18.4c0-0.3-0.1-0.5-0.3-0.7s-0.6-0.2-1.1-0.3l-2.7-0.3c-0.2,0.1-0.4,0.3-0.5,0.5c-0.1,0.2-0.2,0.4-0.2,0.6 c0,0.4,0.2,0.8,0.5,1c0.4,0.2,1,0.3,1.8,0.3C94.2,19.5,95.1,19.2,95.1,18.4z M94.3,11.5c0-0.6-0.1-1-0.4-1.2 c-0.3-0.2-0.7-0.3-1.3-0.3c-0.7,0-1.1,0.1-1.4,0.3c-0.3,0.2-0.4,0.6-0.4,1.2s0.1,1,0.4,1.2c0.3,0.2,0.7,0.3,1.4,0.3 c0.6,0,1.1-0.1,1.3-0.4S94.3,12,94.3,11.5z" }),
react.createElement("path", { fill:"#1FBAD6", d: "M99.4,16V5l2-0.1v10.8c0,0.3,0.1,0.5,0.2,0.6c0.1,0.1,0.3,0.2,0.6,0.2c0.3,0,0.6,0,0.9-0.1V18 c-0.4,0.1-1,0.2-1.6,0.2c-0.8,0-1.3-0.2-1.7-0.5S99.4,16.8,99.4,16z" })
)
)
);
};
return function App() {
var rootElm = react.useRef(null);
var _useState = react.useState({
width: window.innerWidth,
height: window.innerHeight
});
var windowDimension = _useState[0];
var setDimension = _useState[1];
react.useEffect(function sideEffect(){
function handleResize() {
setDimension({width: window.innerWidth, height: window.innerHeight});
};
window.addEventListener('resize', handleResize);
return function() {window.removeEventListener('resize', handleResize);};
}, []);
return react.createElement(
'div',
{style: {position: 'absolute', left: 0, width: '100vw', height: '100vh'}},
LogoSvg(),
react.createElement(keplerGl.KeplerGl, {
mapboxApiAccessToken: mapboxToken,
id: "map",
width: windowDimension.width,
height: windowDimension.height
})
)
}
}(React, KeplerGl, MAPBOX_TOKEN));
const app = (function createReactReduxProvider(react, reactRedux, KeplerElement) {
return react.createElement(
reactRedux.Provider,
{store},
react.createElement(KeplerElement, null)
)
}(React, ReactRedux, KeplerElement));
/** END COMPONENTS **/
/** Render **/
(function render(react, reactDOM, app) {
reactDOM.render(app, document.getElementById('app'));
}(React, ReactDOM, app));
</script>
<!-- The next script will show how to interact directly with Kepler map store -->
<script>
/**
* Customize map.
* In the following section you can use the store object to dispatch Kepler.gl actions
* to add new data and customize behavior
*/
(function customize(keplerGl, store) {
const datasets = [{"version":"v1","data":{"id":"684jo6tsl","label":"Perales envelopes map - Perales envelopes map.csv","color":[143,47,191],"allData":[["pera0123","https://usldhrecovery.uh.edu/items/show/1701","Envelope addressed to Mr. Alonso S. Perales, postmarked 30 May 1924","[Unknown]","Perales, Alonso S.",1924,"Envelope addressed to Mr. Alonso S. Perales from an unknown sender at the Supreme Court of Texas in Austin, Texas, postmarked 30 May 1924. Handwritten note says \"Not at above address.\"",null,"1924-05-30","Austin, TX","San Antonio, TX",30.276273,-97.7412794,29.42662879,-98.4923065],["pera0124","https://usldhrecovery.uh.edu/items/show/1702","Envelope addressed to Mr. Alonso S. Perales, postmarked 9 April 1925","[Unknown]","Perales, Alonso S.",1925,"Envelope addressed to Mr. Alonso S. Perales from an unknown sender at the Supreme Court of Texas in Austin, Texas, postmarked 9 April 1925.",null,"1925-04-09","Austin, TX","San Antonio, TX",30.276273,-97.7412794,29.42662879,-98.4923065],["pera0126","https://usldhrecovery.uh.edu/items/show/1704","Envelope addressed to Mr. Alonso S. Perales, postmarked 17 June 1925","[Unknown]","Perales, Alonso S.",1925,"Envelope addressed to Mr. Alonso S. Perales, from the law office of Goggans and Allison in Breckenridge, Texas, postmarked 17 June 1925.",null,"1925-06-17","Breckenridge, TX","San Antonio, TX",32.755677,-98.90229,29.42662879,-98.4923065],["pera0127","https://usldhrecovery.uh.edu/items/show/1705","Envelope addressed to Mr. Alonso S. Perales c/o [care of] Latin-American Division, postmarked 6 July 1925","[Unknown]","Perales, Alonso S.",1925,"Envelope addressed to Mr. Alonso S. Perales, c/o [care of] the Washington DC Latin-American Division, from an unknown sender at the Supreme Court of Texas in Austin, Texas, postmarked 6 July 1925.",null,"1925-07-06","Austin, TX","Washington, DC",30.276273,-97.7412794,38.8946375,-77.0484716],["pera0128","https://usldhrecovery.uh.edu/items/show/1706","Envelope addressed to Mr. and Mrs. Alonso S. Perales, postmarked 14 December 1931","[Unknown]","Perales, Alonso S.",1931,"Envelope addressed to Alonso S. Perales and Marta Perez de Perales from an unknown sender in Balboa Heights, Panama, postmarked 14 December 1931.",null,"1931-12-14","Balboa Heights, Panama","San Antonio, TX",8.965322,-79.5441549,29.446,-98.48961],["pera0130","https://usldhrecovery.uh.edu/items/show/1708","Envelope addressed to Mr. and Mrs. Alonso S. Perales, postmarked 23 December 1931","[Unknown]","Perales, Alonso S.",1931,"Envelope addressed to Alonso S. Perales and Marta Perez de Perales, from an unknown sender in Brownsville, Texas, postmarked 23 December 1931.",null,"1931-12-23","Brownsville, TX","San Antonio, TX",25.901747,-97.497482,29.42430583,-98.49188447],["pera0131","https://usldhrecovery.uh.edu/items/show/1709","Envelope addressed to Sr. Lic. [Senior Licenciado/Mr. Esq.] Alonso S. Perales, postmarked 20 March 1934","[Unknown]","Perales, Alonso S.",1934,"Envelope addressed to Sr. Lic. [Senior Licenciado/Mr. Esq.] Alonso S. Perales from an unknown sender at San Felipe High School in Del Rio, Texas, postmarked 20 March 1934.",null,"1934-03-20","Del Rio, TX","San Antonio, TX",29.358182,-100.881388,29.42662879,-98.4923065],["pera0133","https://usldhrecovery.uh.edu/items/show/1711","Envelope addressed to Senor Lic. [Licenciado/Esq.] [Alonso S]. Perales, postmarked 22 September 1934","[Unknown]","Perales, Alonso S.",1934,"Envelope addressed to Senor Lic. [Licenciado/Esq.] Alonso S. Perales from an unknown sender at St. Mary's Church in Charlotte, Texas, postmarked 22 September 1934.",null,"1934-09-22","Charlotte, TX","San Antonio, TX",28.861109,-98.706154,29.42662879,-98.4923065],["pera0136","https://usldhrecovery.uh.edu/items/show/1714","Envelope addressed to Mr. Alonso S. Perales, Atty [Attorney] Law /Davis Wright & Perales postmarked 13 October 1936","[Unknown]","Perales, Alonso S.",1936,"Envelope addressed to Alonso S. Perales Mr. Alonso S. Perales, Atty [Attorney] Law /Davis Wright & Perales from an unknown sender at the L.U.L.A.C. Ladies Council, chapter number 15 in Laredo, Texas, postmarked 13 October 1936.",null,"1936-10-13","Laredo, TX","San Antonio, TX",27.5071208,-99.5069945,29.42662879,-98.4923065],["pera0137","https://usldhrecovery.uh.edu/items/show/1715","Envelope addressed to Alonzo [Alonso] S. Perales, postmarked 16 October 1936","[Unknown]","Perales, Alonso S.",1936,"Envelope addressed to Alonzo [Alonso] S. Perales from an unknown sender at the Diocese of El Paso, postmarked 16 October 1936. Envelope engraved with an image of Corpus Christi de la Isleta Mission for the Texas Centennial Celebration and Ysleta Celebration. Marked in red for special delivery.",null,"1936-10-16","El Paso, TX","San Antonio, TX",31.7212839,-106.3387846,29.42662879,-98.4923065],["pera0138","https://usldhrecovery.uh.edu/items/show/1716","Envelope addressed to Mr. Alonso S. Perales, Inspector-General, LULAC Supreme Council, postmarked 14 November 1936","[Unknown]","Perales, Alonso S.",1936,"Envelope addressed to Mr. Alonso S. Perales, Inspector-General, LULAC Supreme Council, from an unknown sender at the LULAC Magnolia Council, chapter number 60, postmarked 14 November 1936.",null,"1936-11-14","Houston, TX","San Antonio, TX",29.737299,-95.286913,29.42662879,-98.4923065],["pera0139","https://usldhrecovery.uh.edu/items/show/1717","Envelope addressed to Mr. Alonso S. Perales, postmarked 29 July 1937","Carrilles, Adelaida","Perales, Alonso S.",1937,"Envelope addressed to Alonso S. Perales from Mrs. Ben Garza [Adelaida Carrilles] in Corpus Christi, Texas, postmarked 29 July 1937.",null,"1937-07-29","Corpus Christi, TX","San Antonio, TX",27.7929465,-97.4011559,29.42662879,-98.4923065],["pera0141","https://usldhrecovery.uh.edu/items/show/1719","Envelope addressed to Sr. [Mr.] Alonso S. Perales, postmarked 30 May 1939","Zapata, Candelario","Perales, Alonso S.",1939,"Envelope addressed to Sr. [Mr.] Alonso S. Perales from Candelario Zapata in Beeville, Texas, postmarked 30 May 1939.",null,"1939-05-30","Beeville, TX","San Antonio, TX",28.40471,-97.750882,29.42662879,-98.4923065],["pera0142","https://usldhrecovery.uh.edu/items/show/1720","Envelope addressed to Sr. Lic. [Senor Licenciado/Mr. Esq.] Alonso S. Perales, postmarked 6 June 1939","Basanez, L.","Perales, Alonso S.",1939,"Envelope addressed to Sr. Lic. [Senor Licenciado/Mr. Esq.] Alonso S. Perales from Dr. L. Basanez in Mercedes, Texas, postmarked 6 June 1939.",null,"1939-06-06","Mercedes, TX","San Antonio, TX",26.14774,-97.912173,29.42662879,-98.4923065],["pera0145","https://usldhrecovery.uh.edu/items/show/1723","Envelope addressed to Sr. [Senor/Mr.] A. [Alonso] S. Perales, postmarked 17 August 1939","Munguia, Manuel","Perales, Alonso S.",1939,"Envelope addressed to Sr. [Senor/Mr.] A.[Alonso] S. Perales from Manuel Munguia in Benavides, Texas, postmarked 17 August 1939.",null,"1939-08-17","Benavides, TX","San Antonio, TX",27.599838,-98.409353,29.42662879,-98.4923065],["pera0146","https://usldhrecovery.uh.edu/items/show/1724","Envelope addressed to Mr. Alonzo [Alonso] S. Perales c/o [care of] Mexican Chamber of Commerce, postmarked 23 August 1939","Canalez, G.R.","Perales, Alonso S.",1939,"Envelope addressed to Mr. Alonzo [Alonso] S. Perales c/o [care of] the Mexican Chamber of Commerce, from G.R. Canalez in Phoenix, Arizona, postmarked 23 August 1939.",null,"1939-08-23","Phoenix, AZ","San Antonio, TX",33.44004175,-112.0713968,29.42662879,-98.4923065],["pera0147","https://usldhrecovery.uh.edu/items/show/1725","Envelope addressed to Sr. [Senior/Mr.] Alonzo [Alonso] S. Perales, postmarked 3 July 1939","Camacho, J.A.","Perales, Alonso S.",1939,"Envelope addressed to Alonso S. Perales from J.A. Camacho in Victoria, Texas, postmarked 3 July 1939.",null,"1939-07-03","Victoria, TX","San Antonio, TX",28.7959931,-97.0110123,29.42662879,-98.4923065],["pera0148","https://usldhrecovery.uh.edu/items/show/1726","Envelope addressed to Mr. and Mrs. Alonso S. Perales, postmarked 5 September 1939","Bramble, Charlene","Perales, Alonso S.",1939,"Envelope addressed to Alonso S. Perales and Marta Perez de Perales from Charlene Bramble in Napa, California, postmarked 5 September 1939.",null,"1939-09-05","Napa, CA","San Antonio, TX",38.29591663,-122.2884831,29.44732378,-98.49567741],["pera0149","https://usldhrecovery.uh.edu/items/show/1727","Envelope addressed to Mr. Alonzo [Alonso] S. Perales, postmarked 8 September 1939","[Unknown]","Perales, Alonso S.",1939,"Envelope addressed to Mr. Alonzo [Alonso] S. Perales from an unknown sender at the Federal Works Agency_Works Projects Administration in Washington D.C., postmarked 8 September 1939. Marked official business.",null,"1939-09-08","Washington, DC","San Antonio, TX",38.89601411,-77.04080562,29.42662879,-98.4923065],["pera0150","https://usldhrecovery.uh.edu/items/show/1728","Envelope addressed to Hon. [Honorable] Alonso S. Perales, Consul General of Nicaragua, postmarked 16 September 1939","Wallace, Herbert F.","Perales, Alonso S.",1939,"Envelope addressed to Hon. [Honorable] Alonso S. Perales, Consul General of Nicaragua, from Herbert F. Wallace in Winthrop, Massachusetts, postmarked 16 September 1939.",null,"1939-09-16","Winthrop, MA","San Antonio, TX",42.3846939,-70.9727294,29.42662879,-98.4923065],["pera0152","https://usldhrecovery.uh.edu/items/show/1730","Envelope addressed to Lic. [Licenciado/Esq.] Alonso S. Perales, postmarked 30 September 1939","Perez, Julio","Perales, Alonso S.",1939,"Envelope addressed to Alonso S. Perales from Julio Perez in Dilley, Texas, postmarked 30 September 1939.",null,"1939-09-30","Dilley, TX","San Antonio, TX",28.66895,-99.169158,29.42662879,-98.4923065],["pera0153","https://usldhrecovery.uh.edu/items/show/1731","Envelope addressed to H [Honorable] Alonso S. Perales,Att [Attorney] at Law, postmarked 2 October 1939","Ramirez, Oswaldo V.","Perales, Alonso S.",1939,"Envelope addressed to H [Honorable] [Alonso] S. Perales from Oswaldo V. Ramirez in Mission, Texas, postmarked 2 October 1939. Damaged envelope (tear on recto).",null,"1939-10-02","Mission, TX","San Antonio, TX",26.23077107,-98.32217359,29.42662879,-98.4923065],["pera0156","https://usldhrecovery.uh.edu/items/show/1734","Envelope addressed to Mr. Alonzo [Alonso] S. Perales, Esq., Attorney at Law, postmarked 12 October 1939","Hamilton, John J.","Perales, Alonso S.",1939,"Envelope addressed to Mr. Alonzo [Alonso] S. Perales, Esq., Attorney at Law, from John J. Hamilton, postmarked 12 October 1939 in Washington, D.C.",null,"1939-10-12","Washington, DC","San Antonio, TX",38.8975248,-77.04215346,29.42662879,-98.4923065],["pera0160","https://usldhrecovery.uh.edu/items/show/1738","Envelope addressed to Sr. Lic. [Senior Licenciado/Mr. Esq.] Alonzo [Alonso] S. Perales, postmarked 3 November 1939","Jimenez, Cristino","Perales, Alonso S.",1939,"Envelope addressed to Sr. Lic. [Senior Licenciado/Mr. Esq.] Alonzo [Alonso] S. Perales, from Cristino Jimenez in Benavides, Texas, postmarked 3 November 1939.",null,"1939-11-03","Benavides, TX","San Antonio, TX",27.599838,-98.409353,29.42662879,-98.4923065],["pera0162","https://usldhrecovery.uh.edu/items/show/1740","Envelope addressed to Mr. Alonso S. Perales, postmarked 9 November 1939","Perales, L.S.","Perales, Alonso S.",1939,"Envelope addressed to Mr. Alonso S. Perales from L.S. Perales in Laredo, Texas, postmarked 9 November 1939.",null,"1939-11-09","Laredo, TX","San Antonio, TX",27.516432,-99.512085,29.42662879,-98.4923065],["pera0167","https://usldhrecovery.uh.edu/items/show/1745","Envelope addressed to Lic. Sr. [Licenciado Senor/Esq. Mr.] Alonso S. Perales, Director de la Liga de Americanos Leales [League of Loyal American Citizens] postmarked 9 October 1940","Acosta, F.S.","Perales, Alonso S.",1940,"Envelope addressed to Lic. Sr. [Licenciado Senor/Esq. Mr.] Alonso S. Perales, Director de la Liga de Americanos Leales [League of Loyal American Citizens/corrected: League of Loyal Citizens], from F.S. Acosta in Mercedes, Texas, postmarked 9 October 1940. Right side of envelope is damaged, obscuring the \"s\" in \"Leales.\"",null,"1940-10-09","Mercedes, TX","San Antonio, TX",26.154951,-97.91391,29.42662879,-98.4923065],["pera0172","https://usldhrecovery.uh.edu/items/show/1750","Envelope addressed to Lic. [Licenciado/Esq.] Alonso S. Perales, postmarked 15 September 1941","Salinas, Daniel","Perales, Alonso S.",1941,"Envelope addressed to Lic. [Licenciado/Esq.] Alonso S. Perales from Lieutenant Daniel Salinas from Philadelphia, Pennsylvania, postmarked 15 September 1941.",null,"1941-09-15","Philadelphia, PA","San Antonio, TX",39.95523269,-75.21301349,29.42662879,-98.4923065],["pera0173","https://usldhrecovery.uh.edu/items/show/1751","Envelope addressed to Sr. Lic. [Senor Licenciado/Mr. Esq.] Alonzo [Alonso] S. Perales, postmarked 28 September 1941","Gonzalez, Francisco","Perales, Alonso S.",1941,"Envelope addressed to Sr. Lic. [Senor Licenciado/Mr. Esq.] Alonzo [Alonso] S. Perales from Francisco Gonzalez in Hamlin, Texas, postmarked 28 September 1941.",null,"1941-09-28","Hamlin, TX","San Antonio, TX",32.88483,-100.126491,29.42662879,-98.4923065],["pera0175","https://usldhrecovery.uh.edu/items/show/1753","Envelope addressed to Mr. Alonso S. Perales, postmarked 3 November 1941","[Unknown]","Perales, Alonso S.",1941,"Envelope addressed to Mr. Alonso S. Perales from an unknown sender at the office of the Under Secretary of the State in Washington, D.C., postmarked 3 November 1941.",null,"1941-11-03","Washington, DC","San Antonio, TX",38.8946375,-77.0484716,29.42662879,-98.4923065],["pera0176","https://usldhrecovery.uh.edu/items/show/1754","Envelope addressed to Mr. Alonso S. Perales, postmarked 19 January 1942","[Unknown]","Perales, Alonso S.",1942,"Envelope addressed to Mr. Alonso S. Perales from an unknown sender in Washington, D.C., postmarked 19 January 1942.",null,"1942-01-19","Washington, DC","San Antonio, TX",38.912811,-77.048434,29.42662879,-98.4923065],["pera0177","https://usldhrecovery.uh.edu/items/show/1755","Envelope addressed to Mr. Alonzo [Alonso] S. Perales, Attorney at Law, postmarked 27 January 1942","Brown, A.W.","Perales, Alonso S.",1942,"Envelope addressed to Mr. Alonzo [Alonso] S. Perales, Attorney at Law, from Major General, A.W. Brown, R.T.D. [Returned to Duty], in Washington, D.C., postmarked 27 January 1942.",null,"1942-01-27","Washington, DC","San Antonio, TX",38.974239,-77.065546,29.42662879,-98.4923065],["pera0179","https://usldhrecovery.uh.edu/items/show/1757","Envelope addressed to Sr. [Mr.] Alonso S. Perales, postmarked 1 April 1942","Parupen, M.L.","Perales, Alonso S.",1942,"Envelope addressed to Sr. [Mr.] Alonso S. Perales from M.L. Vda. de Parupen [M.L. viuda de Parupen/ M.L. widow of Parupen] in Mexico City, postmarked 1 April 1942.",null,"1942-04-01","Mexico City, MX","San Antonio, TX",19.432608,-99.133209,29.42662879,-98.4923065],["pera0181","https://usldhrecovery.uh.edu/items/show/1759","Envelope addressed to Mr. Alonso S. Perales, postmarked 29 August 1942, with censor handwritten on recto","[Unknown]","Perales, Alonso S.",1942,"Envelope addressed to Mr. Alonso S. Perales from an unknown sender in St. Petersburg, Florida, postmarked 29 August 1942. The word \"censor\" is handwritten in pencil on envelope recto.",null,"1942-08-29","Saint Petersburg, FL","San Antonio, TX",27.77207,-82.638489,29.42662879,-98.4923065],["pera0183","https://usldhrecovery.uh.edu/items/show/1761","Envelope addressed to Mr. Alonso S. Perales, postmarked 26 October 1942","[Unknown]","Perales, Alonso S.",1942,"Envelope addressed to Mr. Alonso S. Perales from an unknown sender in the Office of the Naval Officer Procurement in New Orleans, Louisiana, postmarked 26 October 1942. Marked official business.",null,"1942-10-26","New Orleans, LA","San Antonio, TX",29.9511946,-90.0686893,29.42662879,-98.4923065],["pera0184","https://usldhrecovery.uh.edu/items/show/1762","Envelope addressed to Mr. Alonso S. Perales, postmarked 18 February 1943","Sanchez , George I.","Perales, Alonso S.",1943,"Envelope addressed to Mr. Alonso S. Perales from George I. Sanchez in the History and Philosophy of Education department at the University of Texas in Austin, Texas, postmarked 18 February 1943.",null,"1943-02-18","Austin, TX","San Antonio, TX",30.2860678,-97.73933709,29.42662879,-98.4923065],["pera0185","https://usldhrecovery.uh.edu/items/show/1763","Envelope addressed to Mr. Alonso S. Perales, postmarked 13 March 1943","Williamson, W. Albert","Perales, Alonso S.",1943,"Envelope addressed to Mr. Alonso S. Perales from W. A. [Albert] Williamson of the Texas House of Representatives in Austin, Texas, postmarked 13 March 1943.",null,"1943-03-13","Austin, TX","San Antonio, TX",30.27460689,-97.74035096,29.42662879,-98.4923065],["pera0186","https://usldhrecovery.uh.edu/items/show/1764","Envelope addressed to Mr. Alonso Perales, postmarked 31 March 1945","[Unknown]","Perales, Alonso S.",1945,"Envelope addressed to Mr. Alonso Perales [Alonso S. Perales] from an unknown sender in Mexico, postmarked 31 March 1943. City and state of origin are unknown.",null,"1945-03-31","Mexico City, MX","San Antonio, TX",19.4319679,-99.1334172,29.42662879,-98.4923065],["pera0188","https://usldhrecovery.uh.edu/items/show/1766","Envelope addressed to Mr. & Mrs. Alonso S. Perales, postmarked 16 September 1943","Hinojosa, Tomas","Perales, Alonso S.",1943,"Envelope addressed to Alonso S. Perales and Marta Perez de Perales from Tomas Hinojosa at Jose A. Montemayor e Hijos Forwarding Agents in Nuevo Laredo, Tamaulipas, Mexico, postmarked 16 September 1943. Envelope engraved with images of the Warehouse and Office \"Montemayor Building,\" Missouri-Pacific Lines Yards in Laredo, Texas.",null,"1943-09-16","Laredo, TX","San Antonio, TX",27.50353411,-99.51574367,29.44732378,-98.49567741],["pera0189","https://usldhrecovery.uh.edu/items/show/1767","Envelope addressed to Mr. Alonso S. Perales, postmarked 12 May 1927","[Unknown]","Perales, Alonso S.",1927,"Envelope addressed to Mr. Alonso S. Perales from an unknown sender in Fremont, California, postmarked 12 May 1927. Envelope contains a handwritten list on the back, as well as marginalia on the front, including shorthand on the lower left corner. This envelope cannot be definitively matched to any of the letters in the Alonso S. Perales Collection.",null,"2027-05-12","Freemont, CA","Washington, DC",37.552329,-121.983005,38.901631,-77.043842],["pera0190","https://usldhrecovery.uh.edu/items/show/1768","Envelope addressed to A. [Alonso] S. Perales, postmarked 15 October 1943","[Lozano, Mr. & Mrs. S.V.]","Perales, Alonso S.",1943,"Envelope addressed to A. [Alonso] S. Perales from Mr. & Mrs. S.V. Lozano in Raymondville, Texas, postmarked 15 October 1943.",null,"1943-10-15","Raymondville, TX","San Antonio, TX",26.481495,-97.782585,29.44732378,-98.49567741],["pera0192","https://usldhrecovery.uh.edu/items/show/1770","Envelope addressed to Sr. Alonso S. Perales, Consul General de Nicaragua, postmarked 1 November 1943","[Unknown]","Perales, Alonso S.",1943,"Envelope addressed to Sr. Alonso S. Perales, Consul General de Nicaragua, from an unknown sender in the Nicaraguan Ministerio de Relaciones Exteriores [Department of Foreign Relations], postmarked 1 November 1943.",null,"1943-11-01","Managua, NI","San Antonio, TX",12.15322307,-86.26387366,29.42662879,-98.4923065],["pera0193","https://usldhrecovery.uh.edu/items/show/1771","Envelope addressed to League of Loyal Latin Americans, Alonso S. Perales, postmarked 14 April 1944","[Unknown]","Perales, Alonso S.",1944,"Envelope addressed to League of Loyal Latin Americans, Alonso S. Perales from the Coordinator of the Inter-American Affairs in Washington, D.C., postmarked 14 April 1944. Handwritten across the envelope is written \"WILLES' LETTER APRIL- 1944.\" An address for Anita Brenner is handwritten across the envelope.",null,"1944-04-14","Washington, DC","San Antonio, TX",38.8929331,-77.0327982,29.42662879,-98.4923065],["pera0194","https://usldhrecovery.uh.edu/items/show/1772","Envelope addressed to Sr. [Mr.] Lic. [Licenciado/Esq.] Alonso S. Perales, postmarked 31 January 1945","[Unknown]","Perales, Alonso S.",1945,"Envelope addressed to Sr. [Mr.] Lic. [Licenciado/Esq.] Alonso S. Perales from an unknown sender in McAllen, Texas, postmarked 31 January 1945. Engraved return business name for Valley Bridge Company in Hidalgo, Texas is typed over. Handwritten across the envelope in pencil is: \"Answered 2-5-45.\"",null,"1945-01-31","McAllen, TX","San Antonio, TX",26.196555,-98.234796,29.42662879,-98.4923065],["pera0196","https://usldhrecovery.uh.edu/items/show/1774","Envelope addressed to Consulado General de la Republica de Nicaragua [Consul General of the Republic of Nicaragua, Alonso S. Perales], postmarked 20 April 1945","Salas. M., Cesar A.","Perales, Alonso S.",1945,"Envelope addressed to Consulado General de la Republica de Nicaragua [Consul General of the Republic of Nicaragua, Alonso S. Perales] from Cesar A. Salas M. in Austin, Texas, postmarked 20 April 1945.",null,"1945-04-20","Austin, TX","San Antonio, TX",30.291889,-97.737815,29.42662879,-98.4923065],["pera0197","https://usldhrecovery.uh.edu/items/show/1775","Envelope addressed to Alonso S. Perales, Esq., postmarked 26 August 1945","Romulo, Carlos P.","Perales, Alonso S.",1945,"Envelope addressed to Alonso S. Perales, Esq., from Carlos P. Romulo, the Resident Commissioner of the Phillippines to the United States in Washington, D.C., postmarked 26 August 1945.",null,"1945-08-06","Washington, DC","San Antonio, TX",38.88976162,-77.00912717,29.42662879,-98.4923065],["pera0200","https://usldhrecovery.uh.edu/items/show/1778","Envelope addressed to Sr. [Mr.] Lic. [Licenciado/Esq.] Alonso S. Perales, postmarked 11 October 1945","Zuniga, Josse","Perales, Alonso S.",1945,"Envelope addressed to Alonso S. Perales from Josse Zuniga in Schertz, Texas, postmarked 11 October 1945. Scratched out in pencil: c/o [care of] Sr. [Mr.] Ignacio E. Lozano.",null,"1945-10-11","Schertz, TX","San Antonio, TX",29.564925,-98.270124,29.42662879,-98.4923065],["pera0202","https://usldhrecovery.uh.edu/items/show/1780","Envelope addressed to Sr. [Mr.] Consul de Nicaragua [Consul of Nicaragua] Dn. [don] Alonso S. Perales, postmarked 5 February 1948","[Unknown]","Perales, Alonso S.",1948,"Envelope addressed to Consul de Nicaragua [Consul of Nicaragua] Dn. [don] Alonso S. Perales from an unknown sender at the Embajada de Nicaragua [Nicaraguan Embassy] in Washington, D.C., postmarked 5 February 1948. A stamp across the front reads, \"Diplomatic Correspondence Air Mail.\"",null,"1948-02-05","Washington, DC","San Antonio, TX",38.912361,-77.040495,29.42662879,-98.4923065],["pera0203","https://usldhrecovery.uh.edu/items/show/1781","Envelope addressed to Sr. [Mr.] Lic. [Licenciado/Esq.] Alonso S. Perales, postmarked 9 July 1948","Trueba U., Isidoro","Perales, Alonso S.",1948,"Envelope addressed to Sr. [Mr.] Lic. [Licenciado/Esq.] Alonso S. Perales from Rte. [Remitente/sender] Isidoro Trueva U. from Mexico City, postmarked 9 July 1948.",null,"1948-07-19","Mexico City, MX","San Antonio, TX",19.4322048,-99.137047,29.426278,-98.487113],["pera0204","https://usldhrecovery.uh.edu/items/show/1782","Envelope addressed to Mr. Alonso S. Perales, postmarked 11 October 1948","Danciger, Jack","Perales, Alonso S.",1948,"Envelope addressed to Mr. Alonso S. Perales from Jack Danciger from Forth Worth, Texas, postmarked 11 October 1948. Written across the front of the envelope are the words: \"Danciger file\" and \"Personal.\" This envelope cannot be definitively matched to any of the letters in the Alonso S. Perales Collection.",null,"1948-10-11","Fort Worth, TX","San Antonio, TX",32.777728,-97.368051,29.426278,-98.487113],["pera0205","https://usldhrecovery.uh.edu/items/show/1783","Envelope addressed to Mr. Alonso S. Perales, postmarked 24 February 1949","[Penrose, Neville G.]","Perales, Alonso S.",1949,"Envelope addressed to Mr. Alonso S. Perales from an unknown sender at the Good Neighbor Commission of Texas in Austin, Texas, postmarked 24 February 1949. Written across the front of the envelope are the words \"Mr. Penrosa file.\" This note suggests that the letter may have been sent by chairman of the Good Neighbor Commission, Neville G. Penrose.",null,"1949-02-24","Austin, TX","San Antonio, TX",30.2642643,-97.7475016,29.426278,-98.487113],["pera0206","https://usldhrecovery.uh.edu/items/show/1784","Envelope addressed to Mr. Alonso S. Perales, postmarked 1 May 1949","Leal, Armando","Perales, Alonso S.",1949,"Envelope addressed to Mr. Alonso S. Perales from Armando Leal in Concepcion, Texas, postmarked 1 May 1949.",null,"1949-05-01","Concepcion, TX","San Antonio, TX",27.3955989,-98.3521336,29.42662879,-98.4923065],["pera0207","https://usldhrecovery.uh.edu/items/show/1785","Envelope addressed to Mr. Alonso S. Perales, postmarked 18 February 1950","Canales, J.T. [Jose Tomas]","Perales, Alonso S.",1950,"Envelope addressed to Mr. Alonso S. Perales from J.T. [Jose Tomas] Canales in Brownsville, Texas, postmarked 18 February 1950. Written across the front of the envelope is \"Canales file\" and the note \"Compadre: Favor de leer esta carta, Perales.\" [Friend: Please read this letter, Perales]",null,"1950-02-18","Brownsville, TX","San Antonio, TX",25.904526,-97.504332,29.426278,-98.487113],["pera0208","https://usldhrecovery.uh.edu/items/show/1786","Envelope addressed to Alonso S. Perales","[Unknown]","Perales, Alonso S.",1951,"Envelope addressed to Alonso S. Perales from an unknown sender in St. Louis, Missouri. Envelope is marked as containing merchandise.",null,"1951-uu-uu","Saint Louis, MO","San Antonio, TX",38.627631,-90.199087,29.426278,-98.487113],["pera0210","https://usldhrecovery.uh.edu/items/show/1788","Envelope addressed to Mr. Alonso S. Perales, postmarked 22 February 1951","Contreras, H.H.","Perales, Alonso S.",1951,"Envelope addressed to Mr. Alonso S. Perales from H.H. Contreras in Rio Grande City, Texas, postmarked 22 February 1951. Handwritten on the front of the envelope is \"(First class mail).\"",null,"1951-02-22","Rio Grande City, TX","San Antonio, TX",26.378012,-98.817824,29.426278,-98.487113],["pera0212","https://usldhrecovery.uh.edu/items/show/1790","Envelope addressed to Mr. Alonso S. Perales, postmarked 29 June 1951","[Unknown]","Perales, Alonso S.",1951,"Envelope addressed to Mr. Alonso S. Perales from an unknown sender at the Texas Council on Human Relations at the University of Texas in Austin, Texas, postmarked 29 June 1951.",null,"1951-06-29","Austin, TX","San Antonio, TX",30.2860678,-97.73933709,29.426278,-98.487113],["pera0213","https://usldhrecovery.uh.edu/items/show/1791","Envelope addressed to Mr. Alonso S. Perales, postmarked 19 December 1951","[Unknown]","Perales, Alonso S.",1951,"Envelope addressed to Mr. Alonso S. Perales from an unknown sender at the Law Offices of Raymond, Algee, Alvarado, Kazen, & Woods in Laredo, Texas, postmarked 19 December 1951.",null,"1951-12-19","Laredo, TX","San Antonio, TX",27.5071208,-99.5069945,29.426278,-98.487113],["pera0215","https://usldhrecovery.uh.edu/items/show/1793","Envelope addressed to Mr. Alonso S. Perales, postmarked 19 March 1952","Golatka, Walter F.","Perales, Alonso S.",1952,"Envelope addressed to Mr. Alonso S. Perales from Reverend Walter F. Golatka, S.M. at Chaminade College in Clayton 24, Missouri, postmarked 19 March 1952.",null,"1952-03-19","Clayton, MO","San Antonio, TX",38.65023754,-90.40564548,29.44732378,-98.49567741],["pera0216","https://usldhrecovery.uh.edu/items/show/1794","Envelope addressed to Hon. [Honorable] Alonso S. Perales, postmarked 21 March 1952","[Unknown]","Perales, Alonso S.",1952,"Envelope addressed to Hon. [Honorable] Alonso S. Perales from an unknown sender at Hoyo, Wideman & Shelton Attorneys at Law in San Antonio, Texas, postmarked 21 March 1952.",null,"1952-03-21","San Antonio, TX","San Antonio, TX",29.4260944,-98.4906657,29.4260944,-98.4906657],["pera0217","https://usldhrecovery.uh.edu/items/show/1795","Envelope addressed to Honorable Alonso S. Perales, Attorney at Law, postmarked 26 March 1952","Allison, Guy P.","Perales, Alonso S.",1952,"Envelope addressed to Honorable Alonso S. Perales from Honorable Guy P. Allison, Office of Price Stabilization, in San Antonio, Texas, postmarked 26 March 1952.",null,"1952-03-26","San Antonio, TX","San Antonio, TX",29.42315273,-98.49768045,29.426278,-98.487113],["pera0218","https://usldhrecovery.uh.edu/items/show/1796","Envelope addressed to Attorney Alonzo Perales [Alonso S. Perales], postmarked 28 March 1952","Morales, Dionicio","Perales, Alonso S.",1952,"Envelope addressed to Attorney Alonzo Perales [Alonso S. Perales] from Dionicio Morales in Los Angeles, California, postmarked 28 March 1952.",null,"1952-03-28","Los Angeles, CA","San Antonio, TX",34.0352365,-118.2967717,29.426278,-98.487113],["pera0219","https://usldhrecovery.uh.edu/items/show/1797","Envelope addressed to Honorable Alonso S. Perales, postmarked 28 March 1952","[Unknown]","Perales, Alonso S.",1952,"Envelope addressed to Honorable Alonso S. Perales from an unknown sender at the Division of Junior and Senior Schools in the San Antonio Independent School District, postmarked 28 March 1952.",null,"1952-03-28","San Antonio, TX","San Antonio, TX",29.4174363,-98.4873755,29.4480877,-98.4954983],["pera0220","https://usldhrecovery.uh.edu/items/show/1798","Envelope addressed to Mr. Alonso S. Perales, postmarked 30 March 1952","[Unknown]","Perales, Alonso S.",1952,"Envelope addressed to Mr. Alonso S. Perales from an unknown sender at St. Mary's Seminary in Perryville, Missouri, postmarked 30 March 1952.",null,"1952-03-30","Perryville, MO","San Antonio, TX",37.72771,-89.88894,29.426278,-98.487113],["pera0221","https://usldhrecovery.uh.edu/items/show/1799","Envelope addressed to Lic.[Licenciado/Esq.] Alonso S. Perales, postmarked 30 April 1952","Danciger, Jack","Perales, Alonso S.",1952,"Envelope addressed to Lic.[Licenciado/Esq.] Alonso S. Perales from Jack Daciger in Fort Worth, Texas, postmarked 30 April 1952.",null,"1952-04-30","Fort Worth, TX","San Antonio, TX",32.7530426,-97.3302644,29.426278,-98.487113],["pera0222","https://usldhrecovery.uh.edu/items/show/1800","Envelope addressed to Mr. Alonzo Perales [Alonso S. Perales], postmarked 30 March 1952","[Unknown]","Perales, Alonso S.",1952,"Envelope addressed to Mr. Alonzo Perales [Alonso S. Perales] from an unknown sender at the Regional Office of the Bishop's Committee for the Spanish Speaking in Austin, Texas, postmarked 30 March 1952.",null,"1952-06-16","Austin, TX","San Antonio, TX",30.25659,-97.72067,29.4263559,-98.4965872],["pera0224","https://usldhrecovery.uh.edu/items/show/1802","Envelope addressed to the Honorable A.S. Perales [Alonso S. Perales], postmarked 23 February 1953","Olivares, L.","Perales, Alonso S.",1953,"Envelope addressed to the Honorable A.S. Perales [Alonso S. Perales] from L. Olivares in Edinburg, Texas, postmarked 23 February 1953. Marked as Personal.",null,"1953-10-09","Edinburg, TX","San Antonio, TX",26.30255,-98.15784,29.426278,-98.487113],["pera0225","https://usldhrecovery.uh.edu/items/show/1803","Envelope addressed to Mr. Alonso S. Perales, Consulado General de Nicaragua [Consul General of Nicaragua], postmarked 19 February 1954","Rivas, Enrique J.","Perales, Alonso S.",1954,"Envelope addressed to Mr. Alonso S. Perales, Consulado General de Nicaragua [Consul General of Nicaragua], from Enrique J. Rivas in Managua, Nicaragua, postmarked 19 February 1954. Marked as a special delivery.",null,"1954-02-19","Managua, NI","San Antonio, TX",12.15322307,-86.26387366,29.426278,-98.487113],["pera0226","https://usldhrecovery.uh.edu/items/show/1804","Envelope addressed to Alonso S. Perales, postmarked 5 May 1954","[Unknown]","Perales, Alonso S.",1954,"Envelope addressed to Alonso S. Perales from an unknown sender at Lozano Grocery and Market in Raymondville, Texas, postmarked 5 May 1954.",null,"1954-05-05","Raymondville, TX","San Antonio, TX",26.4825088,-97.7823286,29.44732378,-98.49567741],["pera0227","https://usldhrecovery.uh.edu/items/show/1805","Envelope addressed to Mr. A. [Alonso] S. Perales, postmarked 23 July 1954","Austin, R.E.","Perales, Alonso S.",1954,"Envelope addressed to Mr. A. [Alonso] S. Perales at Casa Mexico, from R.E. Austin in Mission, Texas, postmarked 23 July 1954.",null,"1954-07-23","Mission, TX","San Antonio, TX",26.2159066,-98.3252932,29.4263559,-98.4965872],["pera0230","https://usldhrecovery.uh.edu/items/show/1808","Envelope addressed to Sr. Lic. [Senor Licenciado/Mr. Esq.] Alonso S. Perales, postmarked 18 February 1958","Lic. M.P. Moreno Consulado de Mexico","Perales, Alonso S.",1958,"Envelope addressed to Sr. Lic. [Senor Licenciado/Mr. Esq.] Alonso S. Perales from Lic. [Licenciado/Esq.] M.P. Moreno, Consulado de Mexico [Mexican Consul] in Dallas, Texas, postmarked 18 February 1958.",null,"1958-02-18","Dallas, TX","San Antonio, TX",32.7796181,-96.8036044,29.426278,-98.487113],["pera0231","https://usldhrecovery.uh.edu/items/show/1809","Envelope addressed to the Honorable Alonzo [Alonso] S. Perales, Consul General of Nicaragua, postmarked 8 September 1957","Gaithe Jr., Leon D.","Perales, Alonso S.",1957,"Envelope addressed to the Honorable Alonzo [Alonso] S. Perales, Consul General of Nicaragua, from Pfe. [Private First Class] Leon D. Gaithe, Jr. in Fort Bliss, Texas, postmarked 8 September 1957. Marked to be delivered \"via air mail.\"",null,"1957-09-08","Fort Bliss, TX","San Antonio, TX",31.8501,-106.3333,29.426278,-98.487113],["pera0234","https://usldhrecovery.uh.edu/items/show/1812","Envelope addressed to Sr. Lic. [Senior Licenciado/Mr. Esq.] Alonso S. Perales, postmarked 26 May 1958","Moreno, Manuel Pacheco","Perales, Alonso S.",1958,"Envelope addressed to Sr. Lic. [Senior Licenciado/Mr. Esq.] Alonso S. Perales, from Colonel and Attorney, Manuel Pacheco Moreno, at the Universidad Nacional de Mexico and the Procuraduria Militar [Military Attorney General's Office] in Mexico City, postmarked 26 May 1958.",null,"1958-05-21","Mexico City, MX","San Antonio, TX",19.3216047,-99.184905,29.426278,-98.487113],["pera0235","https://usldhrecovery.uh.edu/items/show/1813","Envelope addressed to Sr. Licenciado [Senior/Mr. Esq.] Alonso S. Perales, postmarked 1 June 1958","Martinez, Benito","Perales, Alonso S.",1958,"Envelope addressed to Sr. Licenciado [Senior/Mr. Esq.] Alonso S. Perales from an unknown Benito Martinez, proprietor of La Fe Furniture Store in Pharr, Texas, postmarked 1 June 1958. This envelope includes an outdated address for Perales and a handwritten note that says, \"Forward to the International Bldg. City.\"",null,"1958-06-01","Pharr, TX","San Antonio, TX",26.1947962,-98.1836216,29.426278,-98.487113],["pera0239","https://usldhrecovery.uh.edu/items/show/1816","Envelope addressed to Sr. Lic. [Mr. Esq. Alonso S.] Perales Sr., postmarked 15 May 1932","[Unknown]","Perales, Alonso S.",1932,"Envelope addressed to Sr. Lic. [Mr. Esq. Alonso S.] Perales Sr. by an unknown sender from Saltillo Coahuila, Mexico, postmarked 15 May 1932. Address is for Csa Mexico \"al otro lado del Teatro Alameda\" [on the other side of the Alameda Theater].",null,"1932-uu-uu","Saltillo, Coah., MX","San Antonio, TX",25.4230425,-100.9927509,29.42626,-98.4966],["pera0242","https://usldhrecovery.uh.edu/items/show/1819","Envelope addressed to Sr. Lic. [Mr. Esq.] Alonso S. Pereales, postmarked 1952","Ibarra, Alfredo M.","Perales, Alonso S.",1952,"Envelope addressed to Sr. Lic. [Mr. Esq.] Alonso S. Perales from Alfredo M. Ibarra in Uvalde, Texas, postmarked 1952.",null,"1952-uu-uu","Uvalde, TX","San Antonio, TX",29.2096836,-99.7861679,29.42626,-98.4966],["pera0243","https://usldhrecovery.uh.edu/items/show/1820","Envelope addressed to Sr. Lic. [Mr. Esq.] Alonso S. Perales, postmarked 12 July 1939","Botello, Adelfa","Perales, Alonso S.",1939,"Envelope addressed to Sr. Lic. [Mr. Esq.] Alonso S. Perales from Adelfa Botello in Millett, Texas, postmarked 12 July 1939.",null,"1939-07-12","La Salle County, TX","San Antonio, TX",28.5819279,-99.1991995,29.44732378,-98.49567741],["pera0246","https://usldhrecovery.uh.edu/items/show/1823","Envelope addressed to Mr. Alonso S. Perales, postmarked 18 January, unknown year","Guerra, E.S.","Perales, Alonso S.",null,"Envelope addressed to Mr. Alonso S. Perales, from E. S. Guerra in Seven Sisters, Texas postmarked 18 January, unknown year.",null,"[Unknown]","Seven Sisters, TX","San Antonio, TX",28.0105691,-98.53918,29.42662879,-98.4923065],["pera0248","https://usldhrecovery.uh.edu/items/show/1825","Envelope addressed to Mr. Alonso S. Perales, postmarked 12 December, unknown year","Fernandez, P.","Perales, Alonso S.",null,"Envelope addressed to Mr. Alonso S. Perales from P. Fernandez in Victoria, Texas, postmarked 12 December, unknown year.",null,"[Unknown]","Victoria, TX","San Antonio, TX",28.8053536,-97.0066163,29.42662879,-98.4923065]],"fields":[{"name":"id","type":"string","format":"","analyzerType":"STRING"},{"name":"link","type":"string","format":"","analyzerType":"STRING"},{"name":"title","type":"string","format":"","analyzerType":"STRING"},{"name":"sender","type":"string","format":"","analyzerType":"STRING"},{"name":"recipient","type":"string","format":"","analyzerType":"STRING"},{"name":"year","type":"integer","format":"","analyzerType":"INT"},{"name":"description","type":"string","format":"","analyzerType":"STRING"},{"name":"place","type":"string","format":"","analyzerType":"STRING"},{"name":"date","type":"date","format":"YYYY-M-D","analyzerType":"DATE"},{"name":"sentLocation","type":"string","format":"","analyzerType":"STRING"},{"name":"receivedLocation","type":"string","format":"","analyzerType":"STRING"},{"name":"senderLat","type":"real","format":"","analyzerType":"FLOAT"},{"name":"senderLng","type":"real","format":"","analyzerType":"FLOAT"},{"name":"receiverLat","type":"real","format":"","analyzerType":"FLOAT"},{"name":"receiverLng","type":"real","format":"","analyzerType":"FLOAT"}]}}];
const config = {"version":"v1","config":{"visState":{"filters":[],"layers":[{"id":"gbc0p4k","type":"point","config":{"dataId":"684jo6tsl","label":"Sender","color":[255,190,51],"highlightColor":[252,242,26,255],"columns":{"lat":"senderLat","lng":"senderLng"},"isVisible":true,"visConfig":{"radius":10,"fixedRadius":false,"opacity":0.8,"outline":false,"thickness":2,"strokeColor":null,"colorRange":{"name":"Global Warming","type":"sequential","category":"Uber","colors":["#5A1846","#900C3F","#C70039","#E3611C","#F1920E","#FFC300"]},"strokeColorRange":{"name":"Global Warming","type":"sequential","category":"Uber","colors":["#5A1846","#900C3F","#C70039","#E3611C","#F1920E","#FFC300"]},"radiusRange":[0,50],"filled":true},"hidden":false,"textLabel":[]},"visualChannels":{"colorField":null,"colorScale":"quantile","strokeColorField":null,"strokeColorScale":"quantile","sizeField":null,"sizeScale":"linear"}},{"id":"ruzwf7h","type":"point","config":{"dataId":"684jo6tsl","label":"Recipient","color":[227,26,26],"highlightColor":[252,242,26,255],"columns":{"lat":"receiverLat","lng":"receiverLng"},"isVisible":true,"visConfig":{"radius":10,"fixedRadius":false,"opacity":0.8,"outline":false,"thickness":2,"strokeColor":null,"colorRange":{"name":"Global Warming","type":"sequential","category":"Uber","colors":["#5A1846","#900C3F","#C70039","#E3611C","#F1920E","#FFC300"]},"strokeColorRange":{"name":"Global Warming","type":"sequential","category":"Uber","colors":["#5A1846","#900C3F","#C70039","#E3611C","#F1920E","#FFC300"]},"radiusRange":[0,50],"filled":true},"hidden":false,"textLabel":[{"field":null,"color":[255,255,255],"size":18,"offset":[0,0],"anchor":"start","alignment":"center","outlineWidth":0,"outlineColor":[255,0,0,255],"background":false,"backgroundColor":[0,0,200,255]}]},"visualChannels":{"colorField":null,"colorScale":"quantile","strokeColorField":null,"strokeColorScale":"quantile","sizeField":null,"sizeScale":"linear"}},{"id":"lvlrjck","type":"arc","config":{"dataId":"684jo6tsl","label":"Network extension","color":[146,38,190],"highlightColor":[252,242,26,255],"columns":{"lat0":"senderLat","lng0":"senderLng","lat1":"receiverLat","lng1":"receiverLng"},"isVisible":true,"visConfig":{"opacity":0.8,"thickness":1.9,"colorRange":{"name":"Global Warming","type":"sequential","category":"Uber","colors":["#5A1846","#900C3F","#C70039","#E3611C","#F1920E","#FFC300"]},"sizeRange":[0,10],"targetColor":[130,13,175]},"hidden":false,"textLabel":[{"field":null,"color":[255,255,255],"size":18,"offset":[0,0],"anchor":"start","alignment":"center","outlineWidth":0,"outlineColor":[255,0,0,255],"background":false,"backgroundColor":[0,0,200,255]}]},"visualChannels":{"colorField":null,"colorScale":"quantile","sizeField":null,"sizeScale":"linear"}}],"effects":[],"interactionConfig":{"tooltip":{"fieldsToShow":{"684jo6tsl":[{"name":"id","format":null},{"name":"link","format":null},{"name":"title","format":null},{"name":"sender","format":null},{"name":"recipient","format":null}]},"compareMode":false,"compareType":"absolute","enabled":true},"brush":{"size":0.5,"enabled":false},"geocoder":{"enabled":false},"coordinate":{"enabled":false}},"layerBlending":"normal","overlayBlending":"normal","splitMaps":[],"animationConfig":{"currentTime":null,"speed":1},"editor":{"features":[],"visible":true}},"mapState":{"bearing":0,"dragRotate":false,"latitude":30.811518053552234,"longitude":-100.32521743741475,"pitch":0,"zoom":7.008865092827161,"isSplit":false,"isViewportSynced":true,"isZoomLocked":false,"splitMapViewports":[]},"mapStyle":{"styleType":"dark","topLayerGroups":{},"visibleLayerGroups":{"label":true,"road":true,"border":false,"building":true,"water":true,"land":true,"3d building":false},"threeDBuildingColor":[9.665468314072013,17.18305478057247,31.1442867897876],"backgroundColor":[255,255,255],"mapStyles":{}}}};
const loadedData = keplerGl.KeplerGlSchema.load(
datasets,
config
);
store.dispatch(keplerGl.addDataToMap({
datasets: loadedData.datasets,
config: loadedData.config,
options: {
centerMap: false
}
}));
}(KeplerGl, store))
</script>
</body>
</html>